@eide/foir-cli 0.1.33 → 0.1.35
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/cli.js +10 -47
- package/dist/codegen/field-mapping.d.ts.map +1 -1
- package/dist/codegen/field-mapping.js +2 -0
- package/dist/codegen/generators/documents.d.ts.map +1 -1
- package/dist/codegen/generators/documents.js +12 -4
- package/dist/codegen/generators/model-types.js +2 -1
- package/dist/codegen/generators/typed-operations-common.d.ts.map +1 -1
- package/dist/codegen/generators/typed-operations-common.js +9 -1
- package/dist/codegen/generators/typed-operations.d.ts.map +1 -1
- package/dist/codegen/generators/typed-operations.js +17 -6
- package/dist/codegen/swift-field-mapping.d.ts.map +1 -1
- package/dist/codegen/swift-field-mapping.js +6 -0
- package/dist/commands/playground.d.ts +4 -0
- package/dist/commands/playground.d.ts.map +1 -0
- package/dist/commands/playground.js +270 -0
- package/dist/commands/register-commands.d.ts +7 -0
- package/dist/commands/register-commands.d.ts.map +1 -0
- package/dist/commands/register-commands.js +259 -0
- package/dist/commands/select-project.js +2 -2
- package/dist/graphql/generated.d.ts +50 -2298
- package/dist/graphql/generated.d.ts.map +1 -1
- package/dist/graphql/generated.js +180 -9992
- package/package.json +2 -1
|
@@ -204,7 +204,7 @@ export type AdminUserAccess = {
|
|
|
204
204
|
tenant: Tenant;
|
|
205
205
|
};
|
|
206
206
|
export type AdminUserList = {
|
|
207
|
-
|
|
207
|
+
items: Array<AdminUser>;
|
|
208
208
|
total: Scalars['Int']['output'];
|
|
209
209
|
};
|
|
210
210
|
export type AdminUserStatus = 'ACTIVE' | 'DELETED' | 'PENDING' | 'SUSPENDED';
|
|
@@ -280,7 +280,7 @@ export type ApiKey = {
|
|
|
280
280
|
usageCount: Scalars['Int']['output'];
|
|
281
281
|
};
|
|
282
282
|
export type ApiKeyList = {
|
|
283
|
-
|
|
283
|
+
items: Array<ApiKey>;
|
|
284
284
|
total: Scalars['Int']['output'];
|
|
285
285
|
};
|
|
286
286
|
export type ApiKeyType = 'PUBLIC' | 'SECRET';
|
|
@@ -924,7 +924,7 @@ export type CustomerExperimentAssignment = {
|
|
|
924
924
|
variantKey?: Maybe<Scalars['String']['output']>;
|
|
925
925
|
};
|
|
926
926
|
export type CustomerList = {
|
|
927
|
-
|
|
927
|
+
items: Array<Customer>;
|
|
928
928
|
total: Scalars['Int']['output'];
|
|
929
929
|
};
|
|
930
930
|
/** Customer login response (public API — uses JWT tokens, not sessions) */
|
|
@@ -1583,6 +1583,13 @@ export type FieldOperationInput = {
|
|
|
1583
1583
|
path: Scalars['String']['input'];
|
|
1584
1584
|
value?: InputMaybe<Scalars['JSON']['input']>;
|
|
1585
1585
|
};
|
|
1586
|
+
/** Field selection for resolved content — pick or omit specific fields */
|
|
1587
|
+
export type FieldSelectionInput = {
|
|
1588
|
+
/** Exclude these field keys (mutually exclusive with omit) */
|
|
1589
|
+
omit?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1590
|
+
/** Include only these field keys (mutually exclusive with omit) */
|
|
1591
|
+
pick?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1592
|
+
};
|
|
1586
1593
|
/** A file stored in the system (unified: images, videos, documents, etc.) */
|
|
1587
1594
|
export type File = {
|
|
1588
1595
|
/** Alt text for accessibility */
|
|
@@ -1649,7 +1656,7 @@ export type FileTransformedUrlArgs = {
|
|
|
1649
1656
|
};
|
|
1650
1657
|
/** Result from listing files */
|
|
1651
1658
|
export type FileList = {
|
|
1652
|
-
|
|
1659
|
+
items: Array<File>;
|
|
1653
1660
|
total: Scalars['Int']['output'];
|
|
1654
1661
|
};
|
|
1655
1662
|
/** Source of the file */
|
|
@@ -1952,7 +1959,7 @@ export type Invitation = {
|
|
|
1952
1959
|
};
|
|
1953
1960
|
/** Paginated list of invitations */
|
|
1954
1961
|
export type InvitationList = {
|
|
1955
|
-
|
|
1962
|
+
items: Array<Invitation>;
|
|
1956
1963
|
total: Scalars['Int']['output'];
|
|
1957
1964
|
};
|
|
1958
1965
|
/** Invitation status */
|
|
@@ -1992,7 +1999,7 @@ export type Job = {
|
|
|
1992
1999
|
/** Paginated list of jobs */
|
|
1993
2000
|
export type JobList = {
|
|
1994
2001
|
/** The job items */
|
|
1995
|
-
|
|
2002
|
+
items: Array<Job>;
|
|
1996
2003
|
/** Total number of jobs matching the filter */
|
|
1997
2004
|
total: Scalars['Int']['output'];
|
|
1998
2005
|
};
|
|
@@ -2130,6 +2137,7 @@ export type ModelVersion = {
|
|
|
2130
2137
|
};
|
|
2131
2138
|
export type ModelVersionList = {
|
|
2132
2139
|
items: Array<ModelVersion>;
|
|
2140
|
+
total: Scalars['Int']['output'];
|
|
2133
2141
|
};
|
|
2134
2142
|
/** User with logins from multiple IPs */
|
|
2135
2143
|
export type MultiIpLogin = {
|
|
@@ -3646,7 +3654,7 @@ export type ProjectInfo = {
|
|
|
3646
3654
|
tenantId: Scalars['ID']['output'];
|
|
3647
3655
|
};
|
|
3648
3656
|
export type ProjectList = {
|
|
3649
|
-
|
|
3657
|
+
items: Array<Project>;
|
|
3650
3658
|
total: Scalars['Int']['output'];
|
|
3651
3659
|
};
|
|
3652
3660
|
/** Complete project schemas for code generation */
|
|
@@ -4792,6 +4800,7 @@ export type Record = {
|
|
|
4792
4800
|
};
|
|
4793
4801
|
export type RecordResolvedArgs = {
|
|
4794
4802
|
contexts?: InputMaybe<Scalars['JSON']['input']>;
|
|
4803
|
+
fields?: InputMaybe<FieldSelectionInput>;
|
|
4795
4804
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
4796
4805
|
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
4797
4806
|
preview?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4871,9 +4880,11 @@ export type RecordSearchResult = {
|
|
|
4871
4880
|
};
|
|
4872
4881
|
export type RecordVariantList = {
|
|
4873
4882
|
items: Array<Record>;
|
|
4883
|
+
total: Scalars['Int']['output'];
|
|
4874
4884
|
};
|
|
4875
4885
|
export type RecordVersionList = {
|
|
4876
4886
|
items: Array<Record>;
|
|
4887
|
+
total: Scalars['Int']['output'];
|
|
4877
4888
|
};
|
|
4878
4889
|
/**
|
|
4879
4890
|
* Entity reference value with preview caching
|
|
@@ -5517,7 +5528,7 @@ export type TenantBillingStatus = {
|
|
|
5517
5528
|
};
|
|
5518
5529
|
/** Paginated tenant billing status result */
|
|
5519
5530
|
export type TenantBillingStatusResult = {
|
|
5520
|
-
|
|
5531
|
+
items: Array<TenantBillingStatus>;
|
|
5521
5532
|
total: Scalars['Int']['output'];
|
|
5522
5533
|
};
|
|
5523
5534
|
export type TenantFeature = {
|
|
@@ -5535,7 +5546,7 @@ export type TenantInfo = {
|
|
|
5535
5546
|
name: Scalars['String']['output'];
|
|
5536
5547
|
};
|
|
5537
5548
|
export type TenantList = {
|
|
5538
|
-
|
|
5549
|
+
items: Array<Tenant>;
|
|
5539
5550
|
total: Scalars['Int']['output'];
|
|
5540
5551
|
};
|
|
5541
5552
|
/** Tenant lifecycle status states */
|
|
@@ -5984,208 +5995,6 @@ export type WriteEmbeddingsResult = {
|
|
|
5984
5995
|
errors: Array<EmbeddingWriteError>;
|
|
5985
5996
|
written: Scalars['Int']['output'];
|
|
5986
5997
|
};
|
|
5987
|
-
export type ListApiKeysQueryVariables = Exact<{
|
|
5988
|
-
includeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5989
|
-
search?: InputMaybe<Scalars['String']['input']>;
|
|
5990
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
5991
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
5992
|
-
}>;
|
|
5993
|
-
export type ListApiKeysQuery = {
|
|
5994
|
-
listApiKeys: {
|
|
5995
|
-
total: number;
|
|
5996
|
-
apiKeys: Array<{
|
|
5997
|
-
id: string;
|
|
5998
|
-
name: string;
|
|
5999
|
-
keyPrefix: string;
|
|
6000
|
-
keyType: ApiKeyType;
|
|
6001
|
-
isActive: boolean;
|
|
6002
|
-
lastUsedAt?: string | null;
|
|
6003
|
-
usageCount: number;
|
|
6004
|
-
expiresAt?: string | null;
|
|
6005
|
-
scopes?: Array<string> | null;
|
|
6006
|
-
createdAt: string;
|
|
6007
|
-
revokedAt?: string | null;
|
|
6008
|
-
rotatedAt?: string | null;
|
|
6009
|
-
}>;
|
|
6010
|
-
};
|
|
6011
|
-
};
|
|
6012
|
-
export type GetApiKeyQueryVariables = Exact<{
|
|
6013
|
-
id: Scalars['ID']['input'];
|
|
6014
|
-
}>;
|
|
6015
|
-
export type GetApiKeyQuery = {
|
|
6016
|
-
getApiKey?: {
|
|
6017
|
-
id: string;
|
|
6018
|
-
name: string;
|
|
6019
|
-
keyPrefix: string;
|
|
6020
|
-
keyType: ApiKeyType;
|
|
6021
|
-
isActive: boolean;
|
|
6022
|
-
lastUsedAt?: string | null;
|
|
6023
|
-
lastUsedIp?: string | null;
|
|
6024
|
-
usageCount: number;
|
|
6025
|
-
expiresAt?: string | null;
|
|
6026
|
-
scopes?: Array<string> | null;
|
|
6027
|
-
allowedModels?: Array<string> | null;
|
|
6028
|
-
allowedFileTypes?: Array<FileType> | null;
|
|
6029
|
-
metadata?: unknown | null;
|
|
6030
|
-
createdBy: string;
|
|
6031
|
-
createdAt: string;
|
|
6032
|
-
updatedAt: string;
|
|
6033
|
-
revokedAt?: string | null;
|
|
6034
|
-
rotatedAt?: string | null;
|
|
6035
|
-
} | null;
|
|
6036
|
-
};
|
|
6037
|
-
export type CreateApiKeyMutationVariables = Exact<{
|
|
6038
|
-
input: CreateApiKeyInput;
|
|
6039
|
-
}>;
|
|
6040
|
-
export type CreateApiKeyMutation = {
|
|
6041
|
-
createApiKey: {
|
|
6042
|
-
plainKey: string;
|
|
6043
|
-
warning: string;
|
|
6044
|
-
apiKey: {
|
|
6045
|
-
id: string;
|
|
6046
|
-
name: string;
|
|
6047
|
-
keyPrefix: string;
|
|
6048
|
-
isActive: boolean;
|
|
6049
|
-
scopes?: Array<string> | null;
|
|
6050
|
-
createdAt: string;
|
|
6051
|
-
};
|
|
6052
|
-
};
|
|
6053
|
-
};
|
|
6054
|
-
export type RotateApiKeyMutationVariables = Exact<{
|
|
6055
|
-
id: Scalars['ID']['input'];
|
|
6056
|
-
}>;
|
|
6057
|
-
export type RotateApiKeyMutation = {
|
|
6058
|
-
rotateApiKey: {
|
|
6059
|
-
plainKey: string;
|
|
6060
|
-
warning: string;
|
|
6061
|
-
apiKey: {
|
|
6062
|
-
id: string;
|
|
6063
|
-
name: string;
|
|
6064
|
-
keyPrefix: string;
|
|
6065
|
-
rotatedAt?: string | null;
|
|
6066
|
-
};
|
|
6067
|
-
};
|
|
6068
|
-
};
|
|
6069
|
-
export type RevokeApiKeyMutationVariables = Exact<{
|
|
6070
|
-
id: Scalars['ID']['input'];
|
|
6071
|
-
}>;
|
|
6072
|
-
export type RevokeApiKeyMutation = {
|
|
6073
|
-
revokeApiKey: {
|
|
6074
|
-
id: string;
|
|
6075
|
-
name: string;
|
|
6076
|
-
isActive: boolean;
|
|
6077
|
-
revokedAt?: string | null;
|
|
6078
|
-
};
|
|
6079
|
-
};
|
|
6080
|
-
export type ListAuthProvidersQueryVariables = Exact<{
|
|
6081
|
-
enabledOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6082
|
-
}>;
|
|
6083
|
-
export type ListAuthProvidersQuery = {
|
|
6084
|
-
customerAuthProviders: Array<{
|
|
6085
|
-
id: string;
|
|
6086
|
-
key: string;
|
|
6087
|
-
name: string;
|
|
6088
|
-
type: AuthProviderType;
|
|
6089
|
-
enabled: boolean;
|
|
6090
|
-
isDefault: boolean;
|
|
6091
|
-
priority: number;
|
|
6092
|
-
createdAt: string;
|
|
6093
|
-
updatedAt: string;
|
|
6094
|
-
}>;
|
|
6095
|
-
};
|
|
6096
|
-
export type GetAuthProviderQueryVariables = Exact<{
|
|
6097
|
-
id: Scalars['ID']['input'];
|
|
6098
|
-
}>;
|
|
6099
|
-
export type GetAuthProviderQuery = {
|
|
6100
|
-
customerAuthProvider?: {
|
|
6101
|
-
id: string;
|
|
6102
|
-
key: string;
|
|
6103
|
-
name: string;
|
|
6104
|
-
type: AuthProviderType;
|
|
6105
|
-
configDisplay?: unknown | null;
|
|
6106
|
-
enabled: boolean;
|
|
6107
|
-
isDefault: boolean;
|
|
6108
|
-
priority: number;
|
|
6109
|
-
verifyExternalCustomer: boolean;
|
|
6110
|
-
captureMetadata: boolean;
|
|
6111
|
-
createdAt: string;
|
|
6112
|
-
updatedAt: string;
|
|
6113
|
-
createdBy?: string | null;
|
|
6114
|
-
updatedBy?: string | null;
|
|
6115
|
-
} | null;
|
|
6116
|
-
};
|
|
6117
|
-
export type CreateAuthProviderMutationVariables = Exact<{
|
|
6118
|
-
input: CreateAuthProviderInput;
|
|
6119
|
-
}>;
|
|
6120
|
-
export type CreateAuthProviderMutation = {
|
|
6121
|
-
createCustomerAuthProvider: {
|
|
6122
|
-
id: string;
|
|
6123
|
-
key: string;
|
|
6124
|
-
name: string;
|
|
6125
|
-
type: AuthProviderType;
|
|
6126
|
-
enabled: boolean;
|
|
6127
|
-
isDefault: boolean;
|
|
6128
|
-
priority: number;
|
|
6129
|
-
createdAt: string;
|
|
6130
|
-
};
|
|
6131
|
-
};
|
|
6132
|
-
export type UpdateAuthProviderMutationVariables = Exact<{
|
|
6133
|
-
id: Scalars['ID']['input'];
|
|
6134
|
-
input: UpdateAuthProviderInput;
|
|
6135
|
-
}>;
|
|
6136
|
-
export type UpdateAuthProviderMutation = {
|
|
6137
|
-
updateCustomerAuthProvider: {
|
|
6138
|
-
id: string;
|
|
6139
|
-
key: string;
|
|
6140
|
-
name: string;
|
|
6141
|
-
type: AuthProviderType;
|
|
6142
|
-
enabled: boolean;
|
|
6143
|
-
isDefault: boolean;
|
|
6144
|
-
priority: number;
|
|
6145
|
-
updatedAt: string;
|
|
6146
|
-
};
|
|
6147
|
-
};
|
|
6148
|
-
export type DeleteAuthProviderMutationVariables = Exact<{
|
|
6149
|
-
id: Scalars['ID']['input'];
|
|
6150
|
-
}>;
|
|
6151
|
-
export type DeleteAuthProviderMutation = {
|
|
6152
|
-
deleteCustomerAuthProvider: boolean;
|
|
6153
|
-
};
|
|
6154
|
-
export type GetCustomerAuthConfigQueryVariables = Exact<{
|
|
6155
|
-
[key: string]: never;
|
|
6156
|
-
}>;
|
|
6157
|
-
export type GetCustomerAuthConfigQuery = {
|
|
6158
|
-
customerAuthConfig: {
|
|
6159
|
-
signingKey: string;
|
|
6160
|
-
algorithm: string;
|
|
6161
|
-
issuer: string;
|
|
6162
|
-
audience: string;
|
|
6163
|
-
keyRotatedAt?: string | null;
|
|
6164
|
-
claims: {
|
|
6165
|
-
customerId: string;
|
|
6166
|
-
email: string;
|
|
6167
|
-
userType: string;
|
|
6168
|
-
tenantId: string;
|
|
6169
|
-
projectId: string;
|
|
6170
|
-
role?: string | null;
|
|
6171
|
-
};
|
|
6172
|
-
};
|
|
6173
|
-
};
|
|
6174
|
-
export type VerifyCustomerTokenQueryVariables = Exact<{
|
|
6175
|
-
token: Scalars['String']['input'];
|
|
6176
|
-
}>;
|
|
6177
|
-
export type VerifyCustomerTokenQuery = {
|
|
6178
|
-
verifyCustomerToken: {
|
|
6179
|
-
valid: boolean;
|
|
6180
|
-
customerId?: string | null;
|
|
6181
|
-
email?: string | null;
|
|
6182
|
-
tenantId?: string | null;
|
|
6183
|
-
projectId?: string | null;
|
|
6184
|
-
roles?: Array<string> | null;
|
|
6185
|
-
expiresAt?: string | null;
|
|
6186
|
-
error?: string | null;
|
|
6187
|
-
};
|
|
6188
|
-
};
|
|
6189
5998
|
export type GetCustomerProfileSchemaQueryVariables = Exact<{
|
|
6190
5999
|
[key: string]: never;
|
|
6191
6000
|
}>;
|
|
@@ -6196,2127 +6005,70 @@ export type GetCustomerProfileSchemaQuery = {
|
|
|
6196
6005
|
version: number;
|
|
6197
6006
|
createdAt: string;
|
|
6198
6007
|
updatedAt: string;
|
|
6199
|
-
updatedBy?: string | null;
|
|
6200
6008
|
fields: Array<{
|
|
6201
|
-
id: string;
|
|
6202
6009
|
key: string;
|
|
6203
|
-
label: string;
|
|
6204
6010
|
type: string;
|
|
6205
|
-
required?: boolean | null;
|
|
6206
|
-
helpText?: string | null;
|
|
6207
|
-
placeholder?: string | null;
|
|
6208
|
-
defaultValue?: unknown | null;
|
|
6209
|
-
config?: unknown | null;
|
|
6210
|
-
isTranslatable?: boolean | null;
|
|
6211
|
-
validation?: Array<{
|
|
6212
|
-
rule: unknown;
|
|
6213
|
-
value?: unknown | null;
|
|
6214
|
-
message?: string | null;
|
|
6215
|
-
}> | null;
|
|
6216
|
-
}>;
|
|
6217
|
-
} | null;
|
|
6218
|
-
};
|
|
6219
|
-
export type UpdateCustomerProfileSchemaMutationVariables = Exact<{
|
|
6220
|
-
fields: Array<FieldDefinitionInput> | FieldDefinitionInput;
|
|
6221
|
-
publicFields?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
6222
|
-
}>;
|
|
6223
|
-
export type UpdateCustomerProfileSchemaMutation = {
|
|
6224
|
-
updateCustomerProfileSchema: {
|
|
6225
|
-
id: string;
|
|
6226
|
-
publicFields: Array<string>;
|
|
6227
|
-
version: number;
|
|
6228
|
-
createdAt: string;
|
|
6229
|
-
updatedAt: string;
|
|
6230
|
-
fields: Array<{
|
|
6231
|
-
id: string;
|
|
6232
|
-
key: string;
|
|
6233
6011
|
label: string;
|
|
6234
|
-
type: string;
|
|
6235
6012
|
required?: boolean | null;
|
|
6236
6013
|
helpText?: string | null;
|
|
6237
|
-
placeholder?: string | null;
|
|
6238
6014
|
defaultValue?: unknown | null;
|
|
6239
6015
|
config?: unknown | null;
|
|
6240
|
-
isTranslatable?: boolean | null;
|
|
6241
6016
|
validation?: Array<{
|
|
6242
6017
|
rule: unknown;
|
|
6243
6018
|
value?: unknown | null;
|
|
6244
6019
|
message?: string | null;
|
|
6245
6020
|
}> | null;
|
|
6246
6021
|
}>;
|
|
6247
|
-
};
|
|
6248
|
-
};
|
|
6249
|
-
export type GetCustomerProfileQueryVariables = Exact<{
|
|
6250
|
-
customerId: Scalars['ID']['input'];
|
|
6251
|
-
}>;
|
|
6252
|
-
export type GetCustomerProfileQuery = {
|
|
6253
|
-
customerProfile?: {
|
|
6254
|
-
id: string;
|
|
6255
|
-
customerId: string;
|
|
6256
|
-
data: unknown;
|
|
6257
|
-
schemaVersionNumber?: number | null;
|
|
6258
|
-
createdAt: string;
|
|
6259
|
-
updatedAt: string;
|
|
6260
|
-
createdBy?: string | null;
|
|
6261
|
-
updatedBy?: string | null;
|
|
6262
6022
|
} | null;
|
|
6263
6023
|
};
|
|
6264
|
-
export type
|
|
6265
|
-
customerId: Scalars['ID']['input'];
|
|
6266
|
-
data: Scalars['JSON']['input'];
|
|
6267
|
-
}>;
|
|
6268
|
-
export type SetCustomerProfileMutation = {
|
|
6269
|
-
setCustomerProfile: {
|
|
6270
|
-
id: string;
|
|
6271
|
-
customerId: string;
|
|
6272
|
-
data: unknown;
|
|
6273
|
-
schemaVersionNumber?: number | null;
|
|
6274
|
-
createdAt: string;
|
|
6275
|
-
updatedAt: string;
|
|
6276
|
-
};
|
|
6277
|
-
};
|
|
6278
|
-
export type ListCustomersQueryVariables = Exact<{
|
|
6279
|
-
status?: InputMaybe<CustomerStatus>;
|
|
6024
|
+
export type ModelsForCodegenQueryVariables = Exact<{
|
|
6280
6025
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
6281
|
-
filters?: InputMaybe<Array<FilterInput> | FilterInput>;
|
|
6282
6026
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6283
6027
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6284
6028
|
}>;
|
|
6285
|
-
export type
|
|
6286
|
-
|
|
6029
|
+
export type ModelsForCodegenQuery = {
|
|
6030
|
+
models: {
|
|
6287
6031
|
total: number;
|
|
6288
|
-
|
|
6032
|
+
items: Array<{
|
|
6289
6033
|
id: string;
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
|
|
6034
|
+
key: string;
|
|
6035
|
+
name: string;
|
|
6036
|
+
pluralName?: string | null;
|
|
6037
|
+
description?: string | null;
|
|
6038
|
+
category?: string | null;
|
|
6039
|
+
fields: unknown;
|
|
6040
|
+
config: unknown;
|
|
6041
|
+
hooks?: unknown | null;
|
|
6293
6042
|
createdAt: string;
|
|
6294
6043
|
updatedAt: string;
|
|
6295
6044
|
}>;
|
|
6296
6045
|
};
|
|
6297
6046
|
};
|
|
6298
|
-
export type
|
|
6299
|
-
|
|
6300
|
-
}>;
|
|
6301
|
-
export type GetCustomerQuery = {
|
|
6302
|
-
customer?: {
|
|
6303
|
-
id: string;
|
|
6304
|
-
email: string;
|
|
6305
|
-
status: CustomerStatus;
|
|
6306
|
-
lastLoginAt?: string | null;
|
|
6307
|
-
createdAt: string;
|
|
6308
|
-
updatedAt: string;
|
|
6309
|
-
} | null;
|
|
6310
|
-
};
|
|
6311
|
-
export type GetCustomerByEmailQueryVariables = Exact<{
|
|
6312
|
-
email: Scalars['String']['input'];
|
|
6313
|
-
}>;
|
|
6314
|
-
export type GetCustomerByEmailQuery = {
|
|
6315
|
-
customerByEmail?: {
|
|
6316
|
-
id: string;
|
|
6317
|
-
email: string;
|
|
6318
|
-
status: CustomerStatus;
|
|
6319
|
-
lastLoginAt?: string | null;
|
|
6320
|
-
createdAt: string;
|
|
6321
|
-
updatedAt: string;
|
|
6322
|
-
} | null;
|
|
6323
|
-
};
|
|
6324
|
-
export type CreateCustomerMutationVariables = Exact<{
|
|
6325
|
-
input: CreateCustomerInput;
|
|
6326
|
-
}>;
|
|
6327
|
-
export type CreateCustomerMutation = {
|
|
6328
|
-
createCustomer: {
|
|
6329
|
-
id: string;
|
|
6330
|
-
email: string;
|
|
6331
|
-
status: CustomerStatus;
|
|
6332
|
-
createdAt: string;
|
|
6333
|
-
};
|
|
6334
|
-
};
|
|
6335
|
-
export type DeleteCustomerMutationVariables = Exact<{
|
|
6336
|
-
id: Scalars['ID']['input'];
|
|
6337
|
-
}>;
|
|
6338
|
-
export type DeleteCustomerMutation = {
|
|
6339
|
-
deleteCustomer: {
|
|
6340
|
-
success: boolean;
|
|
6341
|
-
deletedAt: string;
|
|
6342
|
-
};
|
|
6343
|
-
};
|
|
6344
|
-
export type WriteEmbeddingsMutationVariables = Exact<{
|
|
6345
|
-
input: WriteEmbeddingsInput;
|
|
6346
|
-
}>;
|
|
6347
|
-
export type WriteEmbeddingsMutation = {
|
|
6348
|
-
writeEmbeddings: {
|
|
6349
|
-
written: number;
|
|
6350
|
-
errors: Array<{
|
|
6351
|
-
recordId: string;
|
|
6352
|
-
error: string;
|
|
6353
|
-
}>;
|
|
6354
|
-
};
|
|
6355
|
-
};
|
|
6356
|
-
export type DeleteEmbeddingsMutationVariables = Exact<{
|
|
6357
|
-
input: DeleteEmbeddingsInput;
|
|
6358
|
-
}>;
|
|
6359
|
-
export type DeleteEmbeddingsMutation = {
|
|
6360
|
-
deleteEmbeddings: {
|
|
6361
|
-
deleted: number;
|
|
6362
|
-
};
|
|
6363
|
-
};
|
|
6364
|
-
export type SearchEmbeddingsQueryVariables = Exact<{
|
|
6365
|
-
input: SearchEmbeddingsInput;
|
|
6366
|
-
}>;
|
|
6367
|
-
export type SearchEmbeddingsQuery = {
|
|
6368
|
-
searchEmbeddings: Array<{
|
|
6369
|
-
recordId: string;
|
|
6370
|
-
modelKey: string;
|
|
6371
|
-
naturalKey?: string | null;
|
|
6372
|
-
key: string;
|
|
6373
|
-
similarity: number;
|
|
6374
|
-
metadata?: unknown | null;
|
|
6375
|
-
}>;
|
|
6376
|
-
};
|
|
6377
|
-
export type EmbeddingsForRecordQueryVariables = Exact<{
|
|
6378
|
-
recordId: Scalars['ID']['input'];
|
|
6379
|
-
}>;
|
|
6380
|
-
export type EmbeddingsForRecordQuery = {
|
|
6381
|
-
embeddingsForRecord: Array<{
|
|
6382
|
-
id: string;
|
|
6383
|
-
key: string;
|
|
6384
|
-
dimensions: number;
|
|
6385
|
-
contentHash?: string | null;
|
|
6386
|
-
metadata?: unknown | null;
|
|
6387
|
-
createdAt: string;
|
|
6388
|
-
updatedAt: string;
|
|
6389
|
-
}>;
|
|
6390
|
-
};
|
|
6391
|
-
export type EmbeddingStatsQueryVariables = Exact<{
|
|
6392
|
-
modelKey: Scalars['String']['input'];
|
|
6393
|
-
}>;
|
|
6394
|
-
export type EmbeddingStatsQuery = {
|
|
6395
|
-
embeddingStats: {
|
|
6396
|
-
totalEmbeddings: number;
|
|
6397
|
-
recordsWithEmbeddings: number;
|
|
6398
|
-
totalRecords: number;
|
|
6399
|
-
keys: Array<{
|
|
6400
|
-
key: string;
|
|
6401
|
-
count: number;
|
|
6402
|
-
}>;
|
|
6403
|
-
dimensionBreakdown: Array<{
|
|
6404
|
-
dimensions: number;
|
|
6405
|
-
count: number;
|
|
6406
|
-
}>;
|
|
6407
|
-
};
|
|
6408
|
-
};
|
|
6409
|
-
export type FindSimilarRecordsQueryVariables = Exact<{
|
|
6410
|
-
recordId: Scalars['ID']['input'];
|
|
6411
|
-
key?: InputMaybe<Scalars['String']['input']>;
|
|
6412
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6413
|
-
}>;
|
|
6414
|
-
export type FindSimilarRecordsQuery = {
|
|
6415
|
-
findSimilarRecords: Array<{
|
|
6416
|
-
recordId: string;
|
|
6417
|
-
modelKey: string;
|
|
6418
|
-
naturalKey?: string | null;
|
|
6419
|
-
key: string;
|
|
6420
|
-
similarity: number;
|
|
6421
|
-
metadata?: unknown | null;
|
|
6422
|
-
}>;
|
|
6423
|
-
};
|
|
6424
|
-
export type ListExperimentsQueryVariables = Exact<{
|
|
6425
|
-
status?: InputMaybe<ExperimentStatus>;
|
|
6426
|
-
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6047
|
+
export type GlobalSearchQueryVariables = Exact<{
|
|
6048
|
+
query: Scalars['String']['input'];
|
|
6427
6049
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6428
|
-
|
|
6429
|
-
|
|
6430
|
-
export type ListExperimentsQuery = {
|
|
6431
|
-
experiments: Array<{
|
|
6432
|
-
id: string;
|
|
6433
|
-
key: string;
|
|
6434
|
-
name: string;
|
|
6435
|
-
description?: string | null;
|
|
6436
|
-
status: ExperimentStatus;
|
|
6437
|
-
controlPercent: number;
|
|
6438
|
-
isActive: boolean;
|
|
6439
|
-
startDate?: string | null;
|
|
6440
|
-
endDate?: string | null;
|
|
6441
|
-
createdAt: string;
|
|
6442
|
-
updatedAt: string;
|
|
6443
|
-
}>;
|
|
6444
|
-
};
|
|
6445
|
-
export type GetExperimentQueryVariables = Exact<{
|
|
6446
|
-
id: Scalars['ID']['input'];
|
|
6050
|
+
modelKeys?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
6051
|
+
includeMedia?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6447
6052
|
}>;
|
|
6448
|
-
export type
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
key: string;
|
|
6452
|
-
name: string;
|
|
6453
|
-
description?: string | null;
|
|
6454
|
-
status: ExperimentStatus;
|
|
6455
|
-
targeting: unknown;
|
|
6456
|
-
controlPercent: number;
|
|
6457
|
-
variants: unknown;
|
|
6458
|
-
assignmentPersistence: string;
|
|
6459
|
-
mutuallyExclusive: boolean;
|
|
6460
|
-
exclusionGroupKey?: string | null;
|
|
6461
|
-
startDate?: string | null;
|
|
6462
|
-
endDate?: string | null;
|
|
6463
|
-
metrics?: unknown | null;
|
|
6464
|
-
isActive: boolean;
|
|
6465
|
-
createdAt: string;
|
|
6466
|
-
updatedAt: string;
|
|
6467
|
-
goals?: Array<{
|
|
6053
|
+
export type GlobalSearchQuery = {
|
|
6054
|
+
globalSearch: {
|
|
6055
|
+
records: Array<{
|
|
6468
6056
|
id: string;
|
|
6469
|
-
|
|
6470
|
-
|
|
6471
|
-
|
|
6472
|
-
|
|
6473
|
-
|
|
6474
|
-
|
|
6475
|
-
|
|
6476
|
-
name: string;
|
|
6477
|
-
order: number;
|
|
6478
|
-
}>;
|
|
6479
|
-
} | null;
|
|
6480
|
-
} | null;
|
|
6481
|
-
};
|
|
6482
|
-
export type GetExperimentByKeyQueryVariables = Exact<{
|
|
6483
|
-
key: Scalars['String']['input'];
|
|
6484
|
-
}>;
|
|
6485
|
-
export type GetExperimentByKeyQuery = {
|
|
6486
|
-
experimentByKey?: {
|
|
6487
|
-
id: string;
|
|
6488
|
-
key: string;
|
|
6489
|
-
name: string;
|
|
6490
|
-
description?: string | null;
|
|
6491
|
-
status: ExperimentStatus;
|
|
6492
|
-
targeting: unknown;
|
|
6493
|
-
controlPercent: number;
|
|
6494
|
-
variants: unknown;
|
|
6495
|
-
assignmentPersistence: string;
|
|
6496
|
-
mutuallyExclusive: boolean;
|
|
6497
|
-
exclusionGroupKey?: string | null;
|
|
6498
|
-
startDate?: string | null;
|
|
6499
|
-
endDate?: string | null;
|
|
6500
|
-
metrics?: unknown | null;
|
|
6501
|
-
isActive: boolean;
|
|
6502
|
-
createdAt: string;
|
|
6503
|
-
updatedAt: string;
|
|
6504
|
-
goals?: Array<{
|
|
6057
|
+
modelKey: string;
|
|
6058
|
+
title: string;
|
|
6059
|
+
naturalKey: string;
|
|
6060
|
+
subtitle?: string | null;
|
|
6061
|
+
updatedAt: string;
|
|
6062
|
+
}>;
|
|
6063
|
+
media: Array<{
|
|
6505
6064
|
id: string;
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
}
|
|
6510
|
-
funnel?: {
|
|
6511
|
-
steps: Array<{
|
|
6512
|
-
key: string;
|
|
6513
|
-
name: string;
|
|
6514
|
-
order: number;
|
|
6515
|
-
}>;
|
|
6516
|
-
} | null;
|
|
6517
|
-
} | null;
|
|
6518
|
-
};
|
|
6519
|
-
export type CreateExperimentMutationVariables = Exact<{
|
|
6520
|
-
input: CreateExperimentInput;
|
|
6521
|
-
}>;
|
|
6522
|
-
export type CreateExperimentMutation = {
|
|
6523
|
-
createExperiment: {
|
|
6524
|
-
id: string;
|
|
6525
|
-
key: string;
|
|
6526
|
-
name: string;
|
|
6527
|
-
status: ExperimentStatus;
|
|
6528
|
-
isActive: boolean;
|
|
6529
|
-
createdAt: string;
|
|
6530
|
-
};
|
|
6531
|
-
};
|
|
6532
|
-
export type UpdateExperimentMutationVariables = Exact<{
|
|
6533
|
-
id: Scalars['ID']['input'];
|
|
6534
|
-
input: UpdateExperimentInput;
|
|
6535
|
-
}>;
|
|
6536
|
-
export type UpdateExperimentMutation = {
|
|
6537
|
-
updateExperiment: {
|
|
6538
|
-
id: string;
|
|
6539
|
-
key: string;
|
|
6540
|
-
name: string;
|
|
6541
|
-
status: ExperimentStatus;
|
|
6542
|
-
isActive: boolean;
|
|
6543
|
-
updatedAt: string;
|
|
6065
|
+
fileName: string;
|
|
6066
|
+
altText?: string | null;
|
|
6067
|
+
fileUrl: string;
|
|
6068
|
+
}>;
|
|
6544
6069
|
};
|
|
6545
6070
|
};
|
|
6546
|
-
export type DeleteExperimentMutationVariables = Exact<{
|
|
6547
|
-
id: Scalars['ID']['input'];
|
|
6548
|
-
}>;
|
|
6549
|
-
export type DeleteExperimentMutation = {
|
|
6550
|
-
deleteExperiment: boolean;
|
|
6551
|
-
};
|
|
6552
|
-
export type StartExperimentMutationVariables = Exact<{
|
|
6553
|
-
experimentId: Scalars['ID']['input'];
|
|
6554
|
-
}>;
|
|
6555
|
-
export type StartExperimentMutation = {
|
|
6556
|
-
startExperiment?: {
|
|
6557
|
-
id: string;
|
|
6558
|
-
key: string;
|
|
6559
|
-
name: string;
|
|
6560
|
-
status: ExperimentStatus;
|
|
6561
|
-
} | null;
|
|
6562
|
-
};
|
|
6563
|
-
export type PauseExperimentMutationVariables = Exact<{
|
|
6564
|
-
experimentId: Scalars['ID']['input'];
|
|
6565
|
-
}>;
|
|
6566
|
-
export type PauseExperimentMutation = {
|
|
6567
|
-
pauseExperiment?: {
|
|
6568
|
-
id: string;
|
|
6569
|
-
key: string;
|
|
6570
|
-
name: string;
|
|
6571
|
-
status: ExperimentStatus;
|
|
6572
|
-
} | null;
|
|
6573
|
-
};
|
|
6574
|
-
export type ResumeExperimentMutationVariables = Exact<{
|
|
6575
|
-
experimentId: Scalars['ID']['input'];
|
|
6576
|
-
}>;
|
|
6577
|
-
export type ResumeExperimentMutation = {
|
|
6578
|
-
resumeExperiment?: {
|
|
6579
|
-
id: string;
|
|
6580
|
-
key: string;
|
|
6581
|
-
name: string;
|
|
6582
|
-
status: ExperimentStatus;
|
|
6583
|
-
} | null;
|
|
6584
|
-
};
|
|
6585
|
-
export type EndExperimentMutationVariables = Exact<{
|
|
6586
|
-
experimentId: Scalars['ID']['input'];
|
|
6587
|
-
}>;
|
|
6588
|
-
export type EndExperimentMutation = {
|
|
6589
|
-
endExperiment?: {
|
|
6590
|
-
id: string;
|
|
6591
|
-
key: string;
|
|
6592
|
-
name: string;
|
|
6593
|
-
status: ExperimentStatus;
|
|
6594
|
-
} | null;
|
|
6595
|
-
};
|
|
6596
|
-
export type ExperimentStatsQueryVariables = Exact<{
|
|
6597
|
-
experimentId: Scalars['ID']['input'];
|
|
6598
|
-
}>;
|
|
6599
|
-
export type ExperimentStatsQuery = {
|
|
6600
|
-
experimentStats?: {
|
|
6601
|
-
totalAssignments: number;
|
|
6602
|
-
updatedAt: string;
|
|
6603
|
-
variantAssignments: Array<{
|
|
6604
|
-
variantKey?: string | null;
|
|
6605
|
-
variantName: string;
|
|
6606
|
-
count: number;
|
|
6607
|
-
percentage: number;
|
|
6608
|
-
}>;
|
|
6609
|
-
} | null;
|
|
6610
|
-
};
|
|
6611
|
-
export type ListExtensionsQueryVariables = Exact<{
|
|
6612
|
-
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
6613
|
-
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6614
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6615
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6616
|
-
}>;
|
|
6617
|
-
export type ListExtensionsQuery = {
|
|
6618
|
-
extensions: Array<{
|
|
6619
|
-
id: string;
|
|
6620
|
-
key: string;
|
|
6621
|
-
extensionType: string;
|
|
6622
|
-
direction: string;
|
|
6623
|
-
name: string;
|
|
6624
|
-
description?: string | null;
|
|
6625
|
-
enabled: boolean;
|
|
6626
|
-
syncStatus: string;
|
|
6627
|
-
createdAt: string;
|
|
6628
|
-
updatedAt: string;
|
|
6629
|
-
}>;
|
|
6630
|
-
};
|
|
6631
|
-
export type GetExtensionQueryVariables = Exact<{
|
|
6632
|
-
id: Scalars['ID']['input'];
|
|
6633
|
-
}>;
|
|
6634
|
-
export type GetExtensionQuery = {
|
|
6635
|
-
extension?: {
|
|
6636
|
-
id: string;
|
|
6637
|
-
key: string;
|
|
6638
|
-
extensionType: string;
|
|
6639
|
-
direction: string;
|
|
6640
|
-
name: string;
|
|
6641
|
-
description?: string | null;
|
|
6642
|
-
connectionDomain?: string | null;
|
|
6643
|
-
connectionId?: string | null;
|
|
6644
|
-
enabled: boolean;
|
|
6645
|
-
environment: string;
|
|
6646
|
-
syncStatus: string;
|
|
6647
|
-
syncMetadata?: unknown | null;
|
|
6648
|
-
features?: unknown | null;
|
|
6649
|
-
config?: unknown | null;
|
|
6650
|
-
webhooks?: unknown | null;
|
|
6651
|
-
createdAt: string;
|
|
6652
|
-
updatedAt: string;
|
|
6653
|
-
} | null;
|
|
6654
|
-
};
|
|
6655
|
-
export type GetExtensionByKeyQueryVariables = Exact<{
|
|
6656
|
-
key: Scalars['String']['input'];
|
|
6657
|
-
}>;
|
|
6658
|
-
export type GetExtensionByKeyQuery = {
|
|
6659
|
-
extensionByKey?: {
|
|
6660
|
-
id: string;
|
|
6661
|
-
key: string;
|
|
6662
|
-
extensionType: string;
|
|
6663
|
-
direction: string;
|
|
6664
|
-
name: string;
|
|
6665
|
-
description?: string | null;
|
|
6666
|
-
connectionDomain?: string | null;
|
|
6667
|
-
connectionId?: string | null;
|
|
6668
|
-
enabled: boolean;
|
|
6669
|
-
environment: string;
|
|
6670
|
-
syncStatus: string;
|
|
6671
|
-
syncMetadata?: unknown | null;
|
|
6672
|
-
features?: unknown | null;
|
|
6673
|
-
config?: unknown | null;
|
|
6674
|
-
webhooks?: unknown | null;
|
|
6675
|
-
createdAt: string;
|
|
6676
|
-
updatedAt: string;
|
|
6677
|
-
} | null;
|
|
6678
|
-
};
|
|
6679
|
-
export type RegisterExtensionMutationVariables = Exact<{
|
|
6680
|
-
input: RegisterExtensionInput;
|
|
6681
|
-
}>;
|
|
6682
|
-
export type RegisterExtensionMutation = {
|
|
6683
|
-
registerExtension: {
|
|
6684
|
-
id: string;
|
|
6685
|
-
key: string;
|
|
6686
|
-
name: string;
|
|
6687
|
-
extensionType: string;
|
|
6688
|
-
enabled: boolean;
|
|
6689
|
-
createdAt: string;
|
|
6690
|
-
};
|
|
6691
|
-
};
|
|
6692
|
-
export type TriggerExtensionSyncMutationVariables = Exact<{
|
|
6693
|
-
extensionId: Scalars['ID']['input'];
|
|
6694
|
-
}>;
|
|
6695
|
-
export type TriggerExtensionSyncMutation = {
|
|
6696
|
-
triggerExtensionSync: {
|
|
6697
|
-
success: boolean;
|
|
6698
|
-
error?: string | null;
|
|
6699
|
-
results?: unknown | null;
|
|
6700
|
-
};
|
|
6701
|
-
};
|
|
6702
|
-
export type InstallExtensionMutationVariables = Exact<{
|
|
6703
|
-
input: InstallExtensionInput;
|
|
6704
|
-
}>;
|
|
6705
|
-
export type InstallExtensionMutation = {
|
|
6706
|
-
installExtension: {
|
|
6707
|
-
extensionId: string;
|
|
6708
|
-
extensionKey: string;
|
|
6709
|
-
modelsCreated: number;
|
|
6710
|
-
modelsUpdated: number;
|
|
6711
|
-
operationsCreated: number;
|
|
6712
|
-
operationsUpdated: number;
|
|
6713
|
-
isUpdate: boolean;
|
|
6714
|
-
credentials?: {
|
|
6715
|
-
platformApiKey: string;
|
|
6716
|
-
platformEditorKey: string;
|
|
6717
|
-
webhookSecret: string;
|
|
6718
|
-
} | null;
|
|
6719
|
-
};
|
|
6720
|
-
};
|
|
6721
|
-
export type UnregisterExtensionMutationVariables = Exact<{
|
|
6722
|
-
id: Scalars['ID']['input'];
|
|
6723
|
-
}>;
|
|
6724
|
-
export type UnregisterExtensionMutation = {
|
|
6725
|
-
unregisterExtension: boolean;
|
|
6726
|
-
};
|
|
6727
|
-
export type ListFilesQueryVariables = Exact<{
|
|
6728
|
-
folder?: InputMaybe<Scalars['String']['input']>;
|
|
6729
|
-
mimeType?: InputMaybe<Scalars['String']['input']>;
|
|
6730
|
-
status?: InputMaybe<FileStatus>;
|
|
6731
|
-
search?: InputMaybe<Scalars['String']['input']>;
|
|
6732
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6733
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6734
|
-
}>;
|
|
6735
|
-
export type ListFilesQuery = {
|
|
6736
|
-
files: {
|
|
6737
|
-
total: number;
|
|
6738
|
-
files: Array<{
|
|
6739
|
-
id: string;
|
|
6740
|
-
filename: string;
|
|
6741
|
-
mimeType: string;
|
|
6742
|
-
size: number;
|
|
6743
|
-
folder?: string | null;
|
|
6744
|
-
url: string;
|
|
6745
|
-
status: FileStatus;
|
|
6746
|
-
tags: Array<string>;
|
|
6747
|
-
createdAt: string;
|
|
6748
|
-
updatedAt: string;
|
|
6749
|
-
}>;
|
|
6750
|
-
};
|
|
6751
|
-
};
|
|
6752
|
-
export type GetFileQueryVariables = Exact<{
|
|
6753
|
-
id: Scalars['ID']['input'];
|
|
6754
|
-
}>;
|
|
6755
|
-
export type GetFileQuery = {
|
|
6756
|
-
file?: {
|
|
6757
|
-
id: string;
|
|
6758
|
-
filename: string;
|
|
6759
|
-
mimeType: string;
|
|
6760
|
-
size: number;
|
|
6761
|
-
folder?: string | null;
|
|
6762
|
-
url: string;
|
|
6763
|
-
storageKey: string;
|
|
6764
|
-
status: FileStatus;
|
|
6765
|
-
tags: Array<string>;
|
|
6766
|
-
metadata?: unknown | null;
|
|
6767
|
-
altText?: string | null;
|
|
6768
|
-
caption?: string | null;
|
|
6769
|
-
description?: string | null;
|
|
6770
|
-
createdAt: string;
|
|
6771
|
-
updatedAt: string;
|
|
6772
|
-
} | null;
|
|
6773
|
-
};
|
|
6774
|
-
export type FileStorageUsageQueryVariables = Exact<{
|
|
6775
|
-
[key: string]: never;
|
|
6776
|
-
}>;
|
|
6777
|
-
export type FileStorageUsageQuery = {
|
|
6778
|
-
fileStorageUsage: {
|
|
6779
|
-
totalFiles: number;
|
|
6780
|
-
totalBytes: number;
|
|
6781
|
-
imageCount?: number | null;
|
|
6782
|
-
imageBytes?: number | null;
|
|
6783
|
-
videoCount?: number | null;
|
|
6784
|
-
videoBytes?: number | null;
|
|
6785
|
-
documentCount?: number | null;
|
|
6786
|
-
documentBytes?: number | null;
|
|
6787
|
-
};
|
|
6788
|
-
};
|
|
6789
|
-
export type UpdateFileMutationVariables = Exact<{
|
|
6790
|
-
id: Scalars['ID']['input'];
|
|
6791
|
-
filename?: InputMaybe<Scalars['String']['input']>;
|
|
6792
|
-
folder?: InputMaybe<Scalars['String']['input']>;
|
|
6793
|
-
tags?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
6794
|
-
status?: InputMaybe<FileStatus>;
|
|
6795
|
-
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
6796
|
-
}>;
|
|
6797
|
-
export type UpdateFileMutation = {
|
|
6798
|
-
updateFile: {
|
|
6799
|
-
id: string;
|
|
6800
|
-
filename: string;
|
|
6801
|
-
folder?: string | null;
|
|
6802
|
-
tags: Array<string>;
|
|
6803
|
-
status: FileStatus;
|
|
6804
|
-
updatedAt: string;
|
|
6805
|
-
};
|
|
6806
|
-
};
|
|
6807
|
-
export type UpdateFileMetadataMutationVariables = Exact<{
|
|
6808
|
-
id: Scalars['ID']['input'];
|
|
6809
|
-
altText?: InputMaybe<Scalars['String']['input']>;
|
|
6810
|
-
caption?: InputMaybe<Scalars['String']['input']>;
|
|
6811
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
6812
|
-
}>;
|
|
6813
|
-
export type UpdateFileMetadataMutation = {
|
|
6814
|
-
updateFileMetadata: {
|
|
6815
|
-
id: string;
|
|
6816
|
-
altText?: string | null;
|
|
6817
|
-
caption?: string | null;
|
|
6818
|
-
description?: string | null;
|
|
6819
|
-
updatedAt: string;
|
|
6820
|
-
};
|
|
6821
|
-
};
|
|
6822
|
-
export type DeleteFileMutationVariables = Exact<{
|
|
6823
|
-
id: Scalars['ID']['input'];
|
|
6824
|
-
}>;
|
|
6825
|
-
export type DeleteFileMutation = {
|
|
6826
|
-
deleteFile: boolean;
|
|
6827
|
-
};
|
|
6828
|
-
export type ListHooksQueryVariables = Exact<{
|
|
6829
|
-
event?: InputMaybe<HookEvent>;
|
|
6830
|
-
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6831
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6832
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6833
|
-
}>;
|
|
6834
|
-
export type ListHooksQuery = {
|
|
6835
|
-
hooks: {
|
|
6836
|
-
total: number;
|
|
6837
|
-
items: Array<{
|
|
6838
|
-
id: string;
|
|
6839
|
-
key: string;
|
|
6840
|
-
name: string;
|
|
6841
|
-
event: HookEvent;
|
|
6842
|
-
targetType: string;
|
|
6843
|
-
operationKey?: string | null;
|
|
6844
|
-
notificationConfig?: unknown | null;
|
|
6845
|
-
isActive: boolean;
|
|
6846
|
-
extensionId?: string | null;
|
|
6847
|
-
updatedAt: string;
|
|
6848
|
-
filter?: {
|
|
6849
|
-
modelKey?: string | null;
|
|
6850
|
-
customerSegmentKey?: string | null;
|
|
6851
|
-
condition?: unknown | null;
|
|
6852
|
-
} | null;
|
|
6853
|
-
}>;
|
|
6854
|
-
};
|
|
6855
|
-
};
|
|
6856
|
-
export type GetHookByKeyQueryVariables = Exact<{
|
|
6857
|
-
key: Scalars['String']['input'];
|
|
6858
|
-
}>;
|
|
6859
|
-
export type GetHookByKeyQuery = {
|
|
6860
|
-
hookByKey?: {
|
|
6861
|
-
id: string;
|
|
6862
|
-
key: string;
|
|
6863
|
-
name: string;
|
|
6864
|
-
description?: string | null;
|
|
6865
|
-
event: HookEvent;
|
|
6866
|
-
targetType: string;
|
|
6867
|
-
operationKey?: string | null;
|
|
6868
|
-
notificationConfig?: unknown | null;
|
|
6869
|
-
isActive: boolean;
|
|
6870
|
-
extensionId?: string | null;
|
|
6871
|
-
createdAt: string;
|
|
6872
|
-
updatedAt: string;
|
|
6873
|
-
filter?: {
|
|
6874
|
-
modelKey?: string | null;
|
|
6875
|
-
customerSegmentKey?: string | null;
|
|
6876
|
-
metadata?: unknown | null;
|
|
6877
|
-
condition?: unknown | null;
|
|
6878
|
-
} | null;
|
|
6879
|
-
} | null;
|
|
6880
|
-
};
|
|
6881
|
-
export type CreateHookMutationVariables = Exact<{
|
|
6882
|
-
input: CreateHookInput;
|
|
6883
|
-
}>;
|
|
6884
|
-
export type CreateHookMutation = {
|
|
6885
|
-
createHook: {
|
|
6886
|
-
id: string;
|
|
6887
|
-
key: string;
|
|
6888
|
-
name: string;
|
|
6889
|
-
event: HookEvent;
|
|
6890
|
-
targetType: string;
|
|
6891
|
-
operationKey?: string | null;
|
|
6892
|
-
notificationConfig?: unknown | null;
|
|
6893
|
-
isActive: boolean;
|
|
6894
|
-
createdAt: string;
|
|
6895
|
-
};
|
|
6896
|
-
};
|
|
6897
|
-
export type UpdateHookMutationVariables = Exact<{
|
|
6898
|
-
id: Scalars['ID']['input'];
|
|
6899
|
-
input: UpdateHookInput;
|
|
6900
|
-
}>;
|
|
6901
|
-
export type UpdateHookMutation = {
|
|
6902
|
-
updateHook: {
|
|
6903
|
-
id: string;
|
|
6904
|
-
key: string;
|
|
6905
|
-
name: string;
|
|
6906
|
-
event: HookEvent;
|
|
6907
|
-
targetType: string;
|
|
6908
|
-
operationKey?: string | null;
|
|
6909
|
-
notificationConfig?: unknown | null;
|
|
6910
|
-
isActive: boolean;
|
|
6911
|
-
updatedAt: string;
|
|
6912
|
-
};
|
|
6913
|
-
};
|
|
6914
|
-
export type DeleteHookMutationVariables = Exact<{
|
|
6915
|
-
id: Scalars['ID']['input'];
|
|
6916
|
-
}>;
|
|
6917
|
-
export type DeleteHookMutation = {
|
|
6918
|
-
deleteHook: boolean;
|
|
6919
|
-
};
|
|
6920
|
-
export type HookDeliveriesQueryVariables = Exact<{
|
|
6921
|
-
hookId?: InputMaybe<Scalars['ID']['input']>;
|
|
6922
|
-
event?: InputMaybe<HookEvent>;
|
|
6923
|
-
status?: InputMaybe<HookDeliveryStatus>;
|
|
6924
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6925
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6926
|
-
}>;
|
|
6927
|
-
export type HookDeliveriesQuery = {
|
|
6928
|
-
hookDeliveries: {
|
|
6929
|
-
total: number;
|
|
6930
|
-
items: Array<{
|
|
6931
|
-
id: string;
|
|
6932
|
-
hookId: string;
|
|
6933
|
-
event: HookEvent;
|
|
6934
|
-
status: HookDeliveryStatus;
|
|
6935
|
-
error?: string | null;
|
|
6936
|
-
attempts: number;
|
|
6937
|
-
durationMs?: number | null;
|
|
6938
|
-
deliveredAt: string;
|
|
6939
|
-
createdAt: string;
|
|
6940
|
-
}>;
|
|
6941
|
-
};
|
|
6942
|
-
};
|
|
6943
|
-
export type RetryHookDeliveryMutationVariables = Exact<{
|
|
6944
|
-
deliveryId: Scalars['ID']['input'];
|
|
6945
|
-
}>;
|
|
6946
|
-
export type RetryHookDeliveryMutation = {
|
|
6947
|
-
retryHookDelivery: {
|
|
6948
|
-
id: string;
|
|
6949
|
-
hookId: string;
|
|
6950
|
-
event: HookEvent;
|
|
6951
|
-
status: HookDeliveryStatus;
|
|
6952
|
-
attempts: number;
|
|
6953
|
-
deliveredAt: string;
|
|
6954
|
-
};
|
|
6955
|
-
};
|
|
6956
|
-
export type TestHookMutationVariables = Exact<{
|
|
6957
|
-
hookId: Scalars['ID']['input'];
|
|
6958
|
-
data?: InputMaybe<Scalars['JSON']['input']>;
|
|
6959
|
-
}>;
|
|
6960
|
-
export type TestHookMutation = {
|
|
6961
|
-
testHook: {
|
|
6962
|
-
id: string;
|
|
6963
|
-
hookId: string;
|
|
6964
|
-
event: HookEvent;
|
|
6965
|
-
status: HookDeliveryStatus;
|
|
6966
|
-
payload: unknown;
|
|
6967
|
-
attempts: number;
|
|
6968
|
-
deliveredAt: string;
|
|
6969
|
-
};
|
|
6970
|
-
};
|
|
6971
|
-
export type ListLocalesQueryVariables = Exact<{
|
|
6972
|
-
includeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6973
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6974
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6975
|
-
}>;
|
|
6976
|
-
export type ListLocalesQuery = {
|
|
6977
|
-
locales: Array<{
|
|
6978
|
-
id: string;
|
|
6979
|
-
locale: string;
|
|
6980
|
-
displayName: string;
|
|
6981
|
-
nativeName?: string | null;
|
|
6982
|
-
isDefault: boolean;
|
|
6983
|
-
isActive: boolean;
|
|
6984
|
-
isRtl: boolean;
|
|
6985
|
-
fallbackLocale?: string | null;
|
|
6986
|
-
createdAt: string;
|
|
6987
|
-
updatedAt: string;
|
|
6988
|
-
}>;
|
|
6989
|
-
};
|
|
6990
|
-
export type GetLocaleQueryVariables = Exact<{
|
|
6991
|
-
id: Scalars['ID']['input'];
|
|
6992
|
-
}>;
|
|
6993
|
-
export type GetLocaleQuery = {
|
|
6994
|
-
locale?: {
|
|
6995
|
-
id: string;
|
|
6996
|
-
locale: string;
|
|
6997
|
-
displayName: string;
|
|
6998
|
-
nativeName?: string | null;
|
|
6999
|
-
isDefault: boolean;
|
|
7000
|
-
isActive: boolean;
|
|
7001
|
-
isRtl: boolean;
|
|
7002
|
-
fallbackLocale?: string | null;
|
|
7003
|
-
createdAt: string;
|
|
7004
|
-
updatedAt: string;
|
|
7005
|
-
} | null;
|
|
7006
|
-
};
|
|
7007
|
-
export type GetLocaleByCodeQueryVariables = Exact<{
|
|
7008
|
-
code: Scalars['String']['input'];
|
|
7009
|
-
}>;
|
|
7010
|
-
export type GetLocaleByCodeQuery = {
|
|
7011
|
-
localeByCode?: {
|
|
7012
|
-
id: string;
|
|
7013
|
-
locale: string;
|
|
7014
|
-
displayName: string;
|
|
7015
|
-
nativeName?: string | null;
|
|
7016
|
-
isDefault: boolean;
|
|
7017
|
-
isActive: boolean;
|
|
7018
|
-
isRtl: boolean;
|
|
7019
|
-
fallbackLocale?: string | null;
|
|
7020
|
-
createdAt: string;
|
|
7021
|
-
updatedAt: string;
|
|
7022
|
-
} | null;
|
|
7023
|
-
};
|
|
7024
|
-
export type GetDefaultLocaleQueryVariables = Exact<{
|
|
7025
|
-
[key: string]: never;
|
|
7026
|
-
}>;
|
|
7027
|
-
export type GetDefaultLocaleQuery = {
|
|
7028
|
-
defaultLocale?: {
|
|
7029
|
-
id: string;
|
|
7030
|
-
locale: string;
|
|
7031
|
-
displayName: string;
|
|
7032
|
-
nativeName?: string | null;
|
|
7033
|
-
isDefault: boolean;
|
|
7034
|
-
isActive: boolean;
|
|
7035
|
-
isRtl: boolean;
|
|
7036
|
-
createdAt: string;
|
|
7037
|
-
} | null;
|
|
7038
|
-
};
|
|
7039
|
-
export type CreateLocaleMutationVariables = Exact<{
|
|
7040
|
-
input: CreateLocaleInput;
|
|
7041
|
-
}>;
|
|
7042
|
-
export type CreateLocaleMutation = {
|
|
7043
|
-
createLocale: {
|
|
7044
|
-
id: string;
|
|
7045
|
-
locale: string;
|
|
7046
|
-
displayName: string;
|
|
7047
|
-
isDefault: boolean;
|
|
7048
|
-
isActive: boolean;
|
|
7049
|
-
createdAt: string;
|
|
7050
|
-
};
|
|
7051
|
-
};
|
|
7052
|
-
export type UpdateLocaleMutationVariables = Exact<{
|
|
7053
|
-
id: Scalars['ID']['input'];
|
|
7054
|
-
input: UpdateLocaleInput;
|
|
7055
|
-
}>;
|
|
7056
|
-
export type UpdateLocaleMutation = {
|
|
7057
|
-
updateLocale: {
|
|
7058
|
-
id: string;
|
|
7059
|
-
locale: string;
|
|
7060
|
-
displayName: string;
|
|
7061
|
-
isDefault: boolean;
|
|
7062
|
-
isActive: boolean;
|
|
7063
|
-
updatedAt: string;
|
|
7064
|
-
};
|
|
7065
|
-
};
|
|
7066
|
-
export type DeleteLocaleMutationVariables = Exact<{
|
|
7067
|
-
id: Scalars['ID']['input'];
|
|
7068
|
-
}>;
|
|
7069
|
-
export type DeleteLocaleMutation = {
|
|
7070
|
-
deleteLocale: boolean;
|
|
7071
|
-
};
|
|
7072
|
-
export type ModelsForCodegenQueryVariables = Exact<{
|
|
7073
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7074
|
-
}>;
|
|
7075
|
-
export type ModelsForCodegenQuery = {
|
|
7076
|
-
models: {
|
|
7077
|
-
total: number;
|
|
7078
|
-
items: Array<{
|
|
7079
|
-
id: string;
|
|
7080
|
-
key: string;
|
|
7081
|
-
name: string;
|
|
7082
|
-
pluralName?: string | null;
|
|
7083
|
-
description?: string | null;
|
|
7084
|
-
category?: string | null;
|
|
7085
|
-
fields: unknown;
|
|
7086
|
-
config: unknown;
|
|
7087
|
-
hooks?: unknown | null;
|
|
7088
|
-
}>;
|
|
7089
|
-
};
|
|
7090
|
-
};
|
|
7091
|
-
export type GetModelByKeyQueryVariables = Exact<{
|
|
7092
|
-
key: Scalars['String']['input'];
|
|
7093
|
-
}>;
|
|
7094
|
-
export type GetModelByKeyQuery = {
|
|
7095
|
-
modelByKey?: {
|
|
7096
|
-
id: string;
|
|
7097
|
-
key: string;
|
|
7098
|
-
name: string;
|
|
7099
|
-
pluralName?: string | null;
|
|
7100
|
-
description?: string | null;
|
|
7101
|
-
category?: string | null;
|
|
7102
|
-
icon?: string | null;
|
|
7103
|
-
fields: unknown;
|
|
7104
|
-
config: unknown;
|
|
7105
|
-
hooks?: unknown | null;
|
|
7106
|
-
displayField?: string | null;
|
|
7107
|
-
extensionId?: string | null;
|
|
7108
|
-
systemEntity: boolean;
|
|
7109
|
-
deletable: boolean;
|
|
7110
|
-
editable: boolean;
|
|
7111
|
-
currentVersionId?: string | null;
|
|
7112
|
-
publishedVersionNumber?: number | null;
|
|
7113
|
-
createdAt: string;
|
|
7114
|
-
updatedAt: string;
|
|
7115
|
-
} | null;
|
|
7116
|
-
};
|
|
7117
|
-
export type ListModelsQueryVariables = Exact<{
|
|
7118
|
-
search?: InputMaybe<Scalars['String']['input']>;
|
|
7119
|
-
category?: InputMaybe<Scalars['String']['input']>;
|
|
7120
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7121
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7122
|
-
}>;
|
|
7123
|
-
export type ListModelsQuery = {
|
|
7124
|
-
models: {
|
|
7125
|
-
total: number;
|
|
7126
|
-
items: Array<{
|
|
7127
|
-
id: string;
|
|
7128
|
-
key: string;
|
|
7129
|
-
name: string;
|
|
7130
|
-
category?: string | null;
|
|
7131
|
-
config: unknown;
|
|
7132
|
-
systemEntity: boolean;
|
|
7133
|
-
createdAt: string;
|
|
7134
|
-
updatedAt: string;
|
|
7135
|
-
}>;
|
|
7136
|
-
};
|
|
7137
|
-
};
|
|
7138
|
-
export type CreateModelMutationVariables = Exact<{
|
|
7139
|
-
input: CreateModelInput;
|
|
7140
|
-
}>;
|
|
7141
|
-
export type CreateModelMutation = {
|
|
7142
|
-
createModel: {
|
|
7143
|
-
id: string;
|
|
7144
|
-
key: string;
|
|
7145
|
-
name: string;
|
|
7146
|
-
fields: unknown;
|
|
7147
|
-
config: unknown;
|
|
7148
|
-
createdAt: string;
|
|
7149
|
-
};
|
|
7150
|
-
};
|
|
7151
|
-
export type UpdateModelMutationVariables = Exact<{
|
|
7152
|
-
input: UpdateModelInput;
|
|
7153
|
-
}>;
|
|
7154
|
-
export type UpdateModelMutation = {
|
|
7155
|
-
updateModel: {
|
|
7156
|
-
id: string;
|
|
7157
|
-
key: string;
|
|
7158
|
-
name: string;
|
|
7159
|
-
fields: unknown;
|
|
7160
|
-
config: unknown;
|
|
7161
|
-
updatedAt: string;
|
|
7162
|
-
};
|
|
7163
|
-
};
|
|
7164
|
-
export type DeleteModelMutationVariables = Exact<{
|
|
7165
|
-
id: Scalars['ID']['input'];
|
|
7166
|
-
}>;
|
|
7167
|
-
export type DeleteModelMutation = {
|
|
7168
|
-
deleteModel: boolean;
|
|
7169
|
-
};
|
|
7170
|
-
export type ModelVersionsQueryVariables = Exact<{
|
|
7171
|
-
modelId: Scalars['ID']['input'];
|
|
7172
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7173
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7174
|
-
}>;
|
|
7175
|
-
export type ModelVersionsQuery = {
|
|
7176
|
-
modelVersions: {
|
|
7177
|
-
items: Array<{
|
|
7178
|
-
id: string;
|
|
7179
|
-
modelId: string;
|
|
7180
|
-
versionNumber: number;
|
|
7181
|
-
contentHash: string;
|
|
7182
|
-
changeDescription?: string | null;
|
|
7183
|
-
createdAt: string;
|
|
7184
|
-
createdBy?: string | null;
|
|
7185
|
-
}>;
|
|
7186
|
-
};
|
|
7187
|
-
};
|
|
7188
|
-
export type ListNotesQueryVariables = Exact<{
|
|
7189
|
-
entityType: Scalars['String']['input'];
|
|
7190
|
-
entityId: Scalars['ID']['input'];
|
|
7191
|
-
includeResolved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7192
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7193
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7194
|
-
}>;
|
|
7195
|
-
export type ListNotesQuery = {
|
|
7196
|
-
notes: {
|
|
7197
|
-
total: number;
|
|
7198
|
-
items: Array<{
|
|
7199
|
-
id: string;
|
|
7200
|
-
content: unknown;
|
|
7201
|
-
entityType: string;
|
|
7202
|
-
entityId: string;
|
|
7203
|
-
isResolved: boolean;
|
|
7204
|
-
resolvedAt?: string | null;
|
|
7205
|
-
createdAt: string;
|
|
7206
|
-
author?: {
|
|
7207
|
-
id: string;
|
|
7208
|
-
email: string;
|
|
7209
|
-
} | null;
|
|
7210
|
-
resolvedBy?: {
|
|
7211
|
-
id: string;
|
|
7212
|
-
email: string;
|
|
7213
|
-
} | null;
|
|
7214
|
-
parentNote?: {
|
|
7215
|
-
id: string;
|
|
7216
|
-
} | null;
|
|
7217
|
-
}>;
|
|
7218
|
-
};
|
|
7219
|
-
};
|
|
7220
|
-
export type GetNoteQueryVariables = Exact<{
|
|
7221
|
-
id: Scalars['ID']['input'];
|
|
7222
|
-
}>;
|
|
7223
|
-
export type GetNoteQuery = {
|
|
7224
|
-
note?: {
|
|
7225
|
-
id: string;
|
|
7226
|
-
content: unknown;
|
|
7227
|
-
entityType: string;
|
|
7228
|
-
entityId: string;
|
|
7229
|
-
isResolved: boolean;
|
|
7230
|
-
resolvedAt?: string | null;
|
|
7231
|
-
createdAt: string;
|
|
7232
|
-
author?: {
|
|
7233
|
-
id: string;
|
|
7234
|
-
email: string;
|
|
7235
|
-
} | null;
|
|
7236
|
-
resolvedBy?: {
|
|
7237
|
-
id: string;
|
|
7238
|
-
email: string;
|
|
7239
|
-
} | null;
|
|
7240
|
-
parentNote?: {
|
|
7241
|
-
id: string;
|
|
7242
|
-
} | null;
|
|
7243
|
-
mentions: Array<{
|
|
7244
|
-
id: string;
|
|
7245
|
-
status: MentionStatus;
|
|
7246
|
-
mentionedUser: {
|
|
7247
|
-
id: string;
|
|
7248
|
-
email: string;
|
|
7249
|
-
};
|
|
7250
|
-
}>;
|
|
7251
|
-
} | null;
|
|
7252
|
-
};
|
|
7253
|
-
export type CreateNoteMutationVariables = Exact<{
|
|
7254
|
-
input: CreateNoteInput;
|
|
7255
|
-
}>;
|
|
7256
|
-
export type CreateNoteMutation = {
|
|
7257
|
-
createNote: {
|
|
7258
|
-
id: string;
|
|
7259
|
-
content: unknown;
|
|
7260
|
-
entityType: string;
|
|
7261
|
-
entityId: string;
|
|
7262
|
-
createdAt: string;
|
|
7263
|
-
author?: {
|
|
7264
|
-
id: string;
|
|
7265
|
-
email: string;
|
|
7266
|
-
} | null;
|
|
7267
|
-
};
|
|
7268
|
-
};
|
|
7269
|
-
export type ResolveNoteMutationVariables = Exact<{
|
|
7270
|
-
input: ResolveNoteInput;
|
|
7271
|
-
}>;
|
|
7272
|
-
export type ResolveNoteMutation = {
|
|
7273
|
-
resolveNote: {
|
|
7274
|
-
id: string;
|
|
7275
|
-
isResolved: boolean;
|
|
7276
|
-
resolvedAt?: string | null;
|
|
7277
|
-
resolvedBy?: {
|
|
7278
|
-
id: string;
|
|
7279
|
-
email: string;
|
|
7280
|
-
} | null;
|
|
7281
|
-
};
|
|
7282
|
-
};
|
|
7283
|
-
export type DeleteNoteMutationVariables = Exact<{
|
|
7284
|
-
noteId: Scalars['ID']['input'];
|
|
7285
|
-
}>;
|
|
7286
|
-
export type DeleteNoteMutation = {
|
|
7287
|
-
deleteNote: boolean;
|
|
7288
|
-
};
|
|
7289
|
-
export type ListNotificationsQueryVariables = Exact<{
|
|
7290
|
-
unreadOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7291
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7292
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7293
|
-
}>;
|
|
7294
|
-
export type ListNotificationsQuery = {
|
|
7295
|
-
notifications: {
|
|
7296
|
-
total: number;
|
|
7297
|
-
unreadCount: number;
|
|
7298
|
-
hasMore: boolean;
|
|
7299
|
-
items: Array<{
|
|
7300
|
-
id: string;
|
|
7301
|
-
type: NotificationType;
|
|
7302
|
-
title: string;
|
|
7303
|
-
message?: string | null;
|
|
7304
|
-
isRead: boolean;
|
|
7305
|
-
actionUrl?: string | null;
|
|
7306
|
-
createdAt: string;
|
|
7307
|
-
}>;
|
|
7308
|
-
};
|
|
7309
|
-
};
|
|
7310
|
-
export type MarkNotificationReadMutationVariables = Exact<{
|
|
7311
|
-
id: Scalars['ID']['input'];
|
|
7312
|
-
}>;
|
|
7313
|
-
export type MarkNotificationReadMutation = {
|
|
7314
|
-
markNotificationRead: {
|
|
7315
|
-
id: string;
|
|
7316
|
-
isRead: boolean;
|
|
7317
|
-
readAt?: string | null;
|
|
7318
|
-
};
|
|
7319
|
-
};
|
|
7320
|
-
export type MarkAllNotificationsReadMutationVariables = Exact<{
|
|
7321
|
-
[key: string]: never;
|
|
7322
|
-
}>;
|
|
7323
|
-
export type MarkAllNotificationsReadMutation = {
|
|
7324
|
-
markAllNotificationsRead: number;
|
|
7325
|
-
};
|
|
7326
|
-
export type ListOperationsQueryVariables = Exact<{
|
|
7327
|
-
category?: InputMaybe<Scalars['String']['input']>;
|
|
7328
|
-
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7329
|
-
search?: InputMaybe<Scalars['String']['input']>;
|
|
7330
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7331
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7332
|
-
}>;
|
|
7333
|
-
export type ListOperationsQuery = {
|
|
7334
|
-
operations: {
|
|
7335
|
-
total: number;
|
|
7336
|
-
items: Array<{
|
|
7337
|
-
id: string;
|
|
7338
|
-
key: string;
|
|
7339
|
-
name: string;
|
|
7340
|
-
description?: string | null;
|
|
7341
|
-
category?: string | null;
|
|
7342
|
-
endpoint: string;
|
|
7343
|
-
isActive: boolean;
|
|
7344
|
-
createdAt: string;
|
|
7345
|
-
updatedAt: string;
|
|
7346
|
-
}>;
|
|
7347
|
-
};
|
|
7348
|
-
};
|
|
7349
|
-
export type GetOperationQueryVariables = Exact<{
|
|
7350
|
-
key: Scalars['String']['input'];
|
|
7351
|
-
}>;
|
|
7352
|
-
export type GetOperationQuery = {
|
|
7353
|
-
operation?: {
|
|
7354
|
-
id: string;
|
|
7355
|
-
key: string;
|
|
7356
|
-
name: string;
|
|
7357
|
-
description?: string | null;
|
|
7358
|
-
icon?: string | null;
|
|
7359
|
-
category?: string | null;
|
|
7360
|
-
endpoint: string;
|
|
7361
|
-
endpointAuth?: unknown | null;
|
|
7362
|
-
timeoutMs: number;
|
|
7363
|
-
retryPolicy?: unknown | null;
|
|
7364
|
-
models?: Array<string> | null;
|
|
7365
|
-
inputSchema?: unknown | null;
|
|
7366
|
-
outputSchema?: unknown | null;
|
|
7367
|
-
ui?: unknown | null;
|
|
7368
|
-
isActive: boolean;
|
|
7369
|
-
allowedRoles: Array<string>;
|
|
7370
|
-
createdAt: string;
|
|
7371
|
-
updatedAt: string;
|
|
7372
|
-
streamConfig?: {
|
|
7373
|
-
chunkTimeoutMs: number;
|
|
7374
|
-
maxDurationMs: number;
|
|
7375
|
-
} | null;
|
|
7376
|
-
circuitState?: {
|
|
7377
|
-
endpoint: string;
|
|
7378
|
-
state: CircuitBreakerState;
|
|
7379
|
-
consecutiveFailures: number;
|
|
7380
|
-
lastFailureTime?: string | null;
|
|
7381
|
-
} | null;
|
|
7382
|
-
} | null;
|
|
7383
|
-
};
|
|
7384
|
-
export type ExecuteOperationMutationVariables = Exact<{
|
|
7385
|
-
input: ExecuteOperationInput;
|
|
7386
|
-
}>;
|
|
7387
|
-
export type ExecuteOperationMutation = {
|
|
7388
|
-
executeOperation: {
|
|
7389
|
-
success: boolean;
|
|
7390
|
-
result?: unknown | null;
|
|
7391
|
-
executionId: string;
|
|
7392
|
-
durationMs?: number | null;
|
|
7393
|
-
metadata?: unknown | null;
|
|
7394
|
-
error?: {
|
|
7395
|
-
code: string;
|
|
7396
|
-
message: string;
|
|
7397
|
-
} | null;
|
|
7398
|
-
};
|
|
7399
|
-
};
|
|
7400
|
-
export type OperationExecutionStatsQueryVariables = Exact<{
|
|
7401
|
-
operationKey: Scalars['String']['input'];
|
|
7402
|
-
}>;
|
|
7403
|
-
export type OperationExecutionStatsQuery = {
|
|
7404
|
-
operationExecutionStats: {
|
|
7405
|
-
totalExecutions: number;
|
|
7406
|
-
successCount: number;
|
|
7407
|
-
failureCount: number;
|
|
7408
|
-
avgDurationMs?: number | null;
|
|
7409
|
-
lastExecutedAt?: string | null;
|
|
7410
|
-
};
|
|
7411
|
-
};
|
|
7412
|
-
export type DeadLetterOperationsQueryVariables = Exact<{
|
|
7413
|
-
operationKey?: InputMaybe<Scalars['String']['input']>;
|
|
7414
|
-
status?: InputMaybe<DeadLetterStatus>;
|
|
7415
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7416
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7417
|
-
}>;
|
|
7418
|
-
export type DeadLetterOperationsQuery = {
|
|
7419
|
-
deadLetterOperations: {
|
|
7420
|
-
total: number;
|
|
7421
|
-
items: Array<{
|
|
7422
|
-
id: string;
|
|
7423
|
-
operationKey: string;
|
|
7424
|
-
executionId?: string | null;
|
|
7425
|
-
attempts: number;
|
|
7426
|
-
lastError: string;
|
|
7427
|
-
errorCode?: string | null;
|
|
7428
|
-
status: DeadLetterStatus;
|
|
7429
|
-
failedAt: string;
|
|
7430
|
-
createdAt: string;
|
|
7431
|
-
}>;
|
|
7432
|
-
};
|
|
7433
|
-
};
|
|
7434
|
-
export type RetryDeadLetterMutationVariables = Exact<{
|
|
7435
|
-
id: Scalars['ID']['input'];
|
|
7436
|
-
}>;
|
|
7437
|
-
export type RetryDeadLetterMutation = {
|
|
7438
|
-
retryDeadLetterOperation: {
|
|
7439
|
-
success: boolean;
|
|
7440
|
-
result?: unknown | null;
|
|
7441
|
-
executionId: string;
|
|
7442
|
-
durationMs?: number | null;
|
|
7443
|
-
error?: {
|
|
7444
|
-
code: string;
|
|
7445
|
-
message: string;
|
|
7446
|
-
} | null;
|
|
7447
|
-
};
|
|
7448
|
-
};
|
|
7449
|
-
export type DismissDeadLetterMutationVariables = Exact<{
|
|
7450
|
-
id: Scalars['ID']['input'];
|
|
7451
|
-
}>;
|
|
7452
|
-
export type DismissDeadLetterMutation = {
|
|
7453
|
-
dismissDeadLetterOperation: {
|
|
7454
|
-
id: string;
|
|
7455
|
-
status: DeadLetterStatus;
|
|
7456
|
-
dismissedAt?: string | null;
|
|
7457
|
-
};
|
|
7458
|
-
};
|
|
7459
|
-
export type CreateOperationMutationVariables = Exact<{
|
|
7460
|
-
input: CreateOperationInput;
|
|
7461
|
-
}>;
|
|
7462
|
-
export type CreateOperationMutation = {
|
|
7463
|
-
createOperation: {
|
|
7464
|
-
id: string;
|
|
7465
|
-
key: string;
|
|
7466
|
-
name: string;
|
|
7467
|
-
category?: string | null;
|
|
7468
|
-
endpoint: string;
|
|
7469
|
-
isActive: boolean;
|
|
7470
|
-
createdAt: string;
|
|
7471
|
-
};
|
|
7472
|
-
};
|
|
7473
|
-
export type UpdateOperationMutationVariables = Exact<{
|
|
7474
|
-
key: Scalars['String']['input'];
|
|
7475
|
-
input: UpdateOperationInput;
|
|
7476
|
-
}>;
|
|
7477
|
-
export type UpdateOperationMutation = {
|
|
7478
|
-
updateOperation: {
|
|
7479
|
-
id: string;
|
|
7480
|
-
key: string;
|
|
7481
|
-
name: string;
|
|
7482
|
-
category?: string | null;
|
|
7483
|
-
endpoint: string;
|
|
7484
|
-
isActive: boolean;
|
|
7485
|
-
updatedAt: string;
|
|
7486
|
-
};
|
|
7487
|
-
};
|
|
7488
|
-
export type DeleteOperationMutationVariables = Exact<{
|
|
7489
|
-
key: Scalars['String']['input'];
|
|
7490
|
-
}>;
|
|
7491
|
-
export type DeleteOperationMutation = {
|
|
7492
|
-
deleteOperation: boolean;
|
|
7493
|
-
};
|
|
7494
|
-
export type GetRecordQueryVariables = Exact<{
|
|
7495
|
-
id: Scalars['ID']['input'];
|
|
7496
|
-
}>;
|
|
7497
|
-
export type GetRecordQuery = {
|
|
7498
|
-
record?: {
|
|
7499
|
-
id: string;
|
|
7500
|
-
modelKey: string;
|
|
7501
|
-
naturalKey?: string | null;
|
|
7502
|
-
data?: unknown | null;
|
|
7503
|
-
metadata?: unknown | null;
|
|
7504
|
-
publishedVersionNumber?: number | null;
|
|
7505
|
-
publishedAt?: string | null;
|
|
7506
|
-
versionNumber?: number | null;
|
|
7507
|
-
changeDescription?: string | null;
|
|
7508
|
-
createdAt: string;
|
|
7509
|
-
updatedAt: string;
|
|
7510
|
-
} | null;
|
|
7511
|
-
};
|
|
7512
|
-
export type GetRecordResolvedQueryVariables = Exact<{
|
|
7513
|
-
id: Scalars['ID']['input'];
|
|
7514
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
7515
|
-
preview?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7516
|
-
}>;
|
|
7517
|
-
export type GetRecordResolvedQuery = {
|
|
7518
|
-
record?: {
|
|
7519
|
-
id: string;
|
|
7520
|
-
modelKey: string;
|
|
7521
|
-
naturalKey?: string | null;
|
|
7522
|
-
data?: unknown | null;
|
|
7523
|
-
metadata?: unknown | null;
|
|
7524
|
-
publishedVersionNumber?: number | null;
|
|
7525
|
-
publishedAt?: string | null;
|
|
7526
|
-
versionNumber?: number | null;
|
|
7527
|
-
changeDescription?: string | null;
|
|
7528
|
-
createdAt: string;
|
|
7529
|
-
updatedAt: string;
|
|
7530
|
-
resolved?: {
|
|
7531
|
-
content: unknown;
|
|
7532
|
-
record: {
|
|
7533
|
-
id: string;
|
|
7534
|
-
modelKey: string;
|
|
7535
|
-
naturalKey?: string | null;
|
|
7536
|
-
};
|
|
7537
|
-
variant?: {
|
|
7538
|
-
id: string;
|
|
7539
|
-
variantKey: string;
|
|
7540
|
-
} | null;
|
|
7541
|
-
version?: {
|
|
7542
|
-
id: string;
|
|
7543
|
-
versionNumber: number;
|
|
7544
|
-
} | null;
|
|
7545
|
-
} | null;
|
|
7546
|
-
} | null;
|
|
7547
|
-
};
|
|
7548
|
-
export type GetRecordByKeyQueryVariables = Exact<{
|
|
7549
|
-
modelKey: Scalars['String']['input'];
|
|
7550
|
-
naturalKey: Scalars['String']['input'];
|
|
7551
|
-
}>;
|
|
7552
|
-
export type GetRecordByKeyQuery = {
|
|
7553
|
-
recordByKey?: {
|
|
7554
|
-
id: string;
|
|
7555
|
-
modelKey: string;
|
|
7556
|
-
naturalKey?: string | null;
|
|
7557
|
-
data?: unknown | null;
|
|
7558
|
-
metadata?: unknown | null;
|
|
7559
|
-
publishedVersionNumber?: number | null;
|
|
7560
|
-
publishedAt?: string | null;
|
|
7561
|
-
versionNumber?: number | null;
|
|
7562
|
-
changeDescription?: string | null;
|
|
7563
|
-
createdAt: string;
|
|
7564
|
-
updatedAt: string;
|
|
7565
|
-
} | null;
|
|
7566
|
-
};
|
|
7567
|
-
export type GetRecordByKeyResolvedQueryVariables = Exact<{
|
|
7568
|
-
modelKey: Scalars['String']['input'];
|
|
7569
|
-
naturalKey: Scalars['String']['input'];
|
|
7570
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
7571
|
-
preview?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7572
|
-
}>;
|
|
7573
|
-
export type GetRecordByKeyResolvedQuery = {
|
|
7574
|
-
recordByKey?: {
|
|
7575
|
-
id: string;
|
|
7576
|
-
modelKey: string;
|
|
7577
|
-
naturalKey?: string | null;
|
|
7578
|
-
data?: unknown | null;
|
|
7579
|
-
metadata?: unknown | null;
|
|
7580
|
-
publishedVersionNumber?: number | null;
|
|
7581
|
-
publishedAt?: string | null;
|
|
7582
|
-
versionNumber?: number | null;
|
|
7583
|
-
changeDescription?: string | null;
|
|
7584
|
-
createdAt: string;
|
|
7585
|
-
updatedAt: string;
|
|
7586
|
-
resolved?: {
|
|
7587
|
-
content: unknown;
|
|
7588
|
-
record: {
|
|
7589
|
-
id: string;
|
|
7590
|
-
modelKey: string;
|
|
7591
|
-
naturalKey?: string | null;
|
|
7592
|
-
};
|
|
7593
|
-
variant?: {
|
|
7594
|
-
id: string;
|
|
7595
|
-
variantKey: string;
|
|
7596
|
-
} | null;
|
|
7597
|
-
version?: {
|
|
7598
|
-
id: string;
|
|
7599
|
-
versionNumber: number;
|
|
7600
|
-
} | null;
|
|
7601
|
-
} | null;
|
|
7602
|
-
} | null;
|
|
7603
|
-
};
|
|
7604
|
-
export type ListRecordsQueryVariables = Exact<{
|
|
7605
|
-
modelKey: Scalars['String']['input'];
|
|
7606
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7607
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7608
|
-
filters?: InputMaybe<Array<FilterInput> | FilterInput>;
|
|
7609
|
-
sort?: InputMaybe<SortInput>;
|
|
7610
|
-
}>;
|
|
7611
|
-
export type ListRecordsQuery = {
|
|
7612
|
-
records: {
|
|
7613
|
-
total: number;
|
|
7614
|
-
items: Array<{
|
|
7615
|
-
id: string;
|
|
7616
|
-
modelKey: string;
|
|
7617
|
-
naturalKey?: string | null;
|
|
7618
|
-
versionNumber?: number | null;
|
|
7619
|
-
createdAt: string;
|
|
7620
|
-
updatedAt: string;
|
|
7621
|
-
}>;
|
|
7622
|
-
};
|
|
7623
|
-
};
|
|
7624
|
-
export type CreateRecordMutationVariables = Exact<{
|
|
7625
|
-
input: CreateRecordInput;
|
|
7626
|
-
}>;
|
|
7627
|
-
export type CreateRecordMutation = {
|
|
7628
|
-
createRecord: {
|
|
7629
|
-
record: {
|
|
7630
|
-
id: string;
|
|
7631
|
-
modelKey: string;
|
|
7632
|
-
naturalKey?: string | null;
|
|
7633
|
-
data?: unknown | null;
|
|
7634
|
-
metadata?: unknown | null;
|
|
7635
|
-
createdAt: string;
|
|
7636
|
-
};
|
|
7637
|
-
};
|
|
7638
|
-
};
|
|
7639
|
-
export type UpdateRecordMutationVariables = Exact<{
|
|
7640
|
-
input: UpdateRecordInput;
|
|
7641
|
-
}>;
|
|
7642
|
-
export type UpdateRecordMutation = {
|
|
7643
|
-
updateRecord: {
|
|
7644
|
-
matched: boolean;
|
|
7645
|
-
record?: {
|
|
7646
|
-
id: string;
|
|
7647
|
-
modelKey: string;
|
|
7648
|
-
naturalKey?: string | null;
|
|
7649
|
-
data?: unknown | null;
|
|
7650
|
-
metadata?: unknown | null;
|
|
7651
|
-
updatedAt: string;
|
|
7652
|
-
} | null;
|
|
7653
|
-
};
|
|
7654
|
-
};
|
|
7655
|
-
export type DeleteRecordMutationVariables = Exact<{
|
|
7656
|
-
id: Scalars['ID']['input'];
|
|
7657
|
-
}>;
|
|
7658
|
-
export type DeleteRecordMutation = {
|
|
7659
|
-
deleteRecord: {
|
|
7660
|
-
id: string;
|
|
7661
|
-
modelKey: string;
|
|
7662
|
-
naturalKey?: string | null;
|
|
7663
|
-
};
|
|
7664
|
-
};
|
|
7665
|
-
export type PublishVersionMutationVariables = Exact<{
|
|
7666
|
-
versionId: Scalars['ID']['input'];
|
|
7667
|
-
}>;
|
|
7668
|
-
export type PublishVersionMutation = {
|
|
7669
|
-
publishVersion: boolean;
|
|
7670
|
-
};
|
|
7671
|
-
export type UnpublishRecordMutationVariables = Exact<{
|
|
7672
|
-
id: Scalars['ID']['input'];
|
|
7673
|
-
}>;
|
|
7674
|
-
export type UnpublishRecordMutation = {
|
|
7675
|
-
unpublishRecord: boolean;
|
|
7676
|
-
};
|
|
7677
|
-
export type DuplicateRecordMutationVariables = Exact<{
|
|
7678
|
-
input: DuplicateRecordInput;
|
|
7679
|
-
}>;
|
|
7680
|
-
export type DuplicateRecordMutation = {
|
|
7681
|
-
duplicateRecord: {
|
|
7682
|
-
record: {
|
|
7683
|
-
id: string;
|
|
7684
|
-
modelKey: string;
|
|
7685
|
-
naturalKey?: string | null;
|
|
7686
|
-
};
|
|
7687
|
-
variant?: {
|
|
7688
|
-
id: string;
|
|
7689
|
-
variantKey?: string | null;
|
|
7690
|
-
} | null;
|
|
7691
|
-
version?: {
|
|
7692
|
-
id: string;
|
|
7693
|
-
versionNumber?: number | null;
|
|
7694
|
-
} | null;
|
|
7695
|
-
};
|
|
7696
|
-
};
|
|
7697
|
-
export type CreateVersionMutationVariables = Exact<{
|
|
7698
|
-
input: CreateVersionInput;
|
|
7699
|
-
}>;
|
|
7700
|
-
export type CreateVersionMutation = {
|
|
7701
|
-
createVersion: {
|
|
7702
|
-
id: string;
|
|
7703
|
-
modelKey: string;
|
|
7704
|
-
recordType: string;
|
|
7705
|
-
parentId?: string | null;
|
|
7706
|
-
data?: unknown | null;
|
|
7707
|
-
metadata?: unknown | null;
|
|
7708
|
-
versionNumber?: number | null;
|
|
7709
|
-
contentHash?: string | null;
|
|
7710
|
-
changeDescription?: string | null;
|
|
7711
|
-
publishStatus?: string | null;
|
|
7712
|
-
createdAt: string;
|
|
7713
|
-
};
|
|
7714
|
-
};
|
|
7715
|
-
export type CreateVariantMutationVariables = Exact<{
|
|
7716
|
-
input: CreateVariantInput;
|
|
7717
|
-
}>;
|
|
7718
|
-
export type CreateVariantMutation = {
|
|
7719
|
-
createVariant: {
|
|
7720
|
-
id: string;
|
|
7721
|
-
modelKey: string;
|
|
7722
|
-
recordType: string;
|
|
7723
|
-
parentId?: string | null;
|
|
7724
|
-
variantKey?: string | null;
|
|
7725
|
-
variantName?: string | null;
|
|
7726
|
-
isDefault?: boolean | null;
|
|
7727
|
-
priority?: number | null;
|
|
7728
|
-
createdAt: string;
|
|
7729
|
-
};
|
|
7730
|
-
};
|
|
7731
|
-
export type RecordVersionsQueryVariables = Exact<{
|
|
7732
|
-
parentId: Scalars['ID']['input'];
|
|
7733
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7734
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7735
|
-
}>;
|
|
7736
|
-
export type RecordVersionsQuery = {
|
|
7737
|
-
recordVersions: {
|
|
7738
|
-
items: Array<{
|
|
7739
|
-
id: string;
|
|
7740
|
-
versionNumber?: number | null;
|
|
7741
|
-
data?: unknown | null;
|
|
7742
|
-
changeDescription?: string | null;
|
|
7743
|
-
createdAt: string;
|
|
7744
|
-
}>;
|
|
7745
|
-
};
|
|
7746
|
-
};
|
|
7747
|
-
export type RecordVariantsQueryVariables = Exact<{
|
|
7748
|
-
recordId: Scalars['ID']['input'];
|
|
7749
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7750
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7751
|
-
}>;
|
|
7752
|
-
export type RecordVariantsQuery = {
|
|
7753
|
-
recordVariants: {
|
|
7754
|
-
items: Array<{
|
|
7755
|
-
id: string;
|
|
7756
|
-
variantKey?: string | null;
|
|
7757
|
-
variantName?: string | null;
|
|
7758
|
-
isDefault?: boolean | null;
|
|
7759
|
-
priority?: number | null;
|
|
7760
|
-
createdAt: string;
|
|
7761
|
-
}>;
|
|
7762
|
-
};
|
|
7763
|
-
};
|
|
7764
|
-
export type ListSchedulesQueryVariables = Exact<{
|
|
7765
|
-
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7766
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7767
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7768
|
-
}>;
|
|
7769
|
-
export type ListSchedulesQuery = {
|
|
7770
|
-
schedules: {
|
|
7771
|
-
total: number;
|
|
7772
|
-
items: Array<{
|
|
7773
|
-
id: string;
|
|
7774
|
-
key: string;
|
|
7775
|
-
name: string;
|
|
7776
|
-
cron: string;
|
|
7777
|
-
cronDescription?: string | null;
|
|
7778
|
-
timezone: string;
|
|
7779
|
-
isActive: boolean;
|
|
7780
|
-
lastRunAt?: string | null;
|
|
7781
|
-
lastRunStatus?: ScheduleRunStatus | null;
|
|
7782
|
-
nextRunAt?: string | null;
|
|
7783
|
-
runCount: number;
|
|
7784
|
-
failureCount: number;
|
|
7785
|
-
createdAt: string;
|
|
7786
|
-
}>;
|
|
7787
|
-
};
|
|
7788
|
-
};
|
|
7789
|
-
export type GetScheduleQueryVariables = Exact<{
|
|
7790
|
-
key: Scalars['String']['input'];
|
|
7791
|
-
}>;
|
|
7792
|
-
export type GetScheduleQuery = {
|
|
7793
|
-
schedule?: {
|
|
7794
|
-
id: string;
|
|
7795
|
-
key: string;
|
|
7796
|
-
name: string;
|
|
7797
|
-
description?: string | null;
|
|
7798
|
-
cron: string;
|
|
7799
|
-
cronDescription?: string | null;
|
|
7800
|
-
timezone: string;
|
|
7801
|
-
targetType: ScheduleTargetType;
|
|
7802
|
-
targetConfig: unknown;
|
|
7803
|
-
isActive: boolean;
|
|
7804
|
-
pausedAt?: string | null;
|
|
7805
|
-
lastRunAt?: string | null;
|
|
7806
|
-
lastRunStatus?: ScheduleRunStatus | null;
|
|
7807
|
-
lastRunError?: string | null;
|
|
7808
|
-
nextRunAt?: string | null;
|
|
7809
|
-
runCount: number;
|
|
7810
|
-
failureCount: number;
|
|
7811
|
-
consecutiveFailures: number;
|
|
7812
|
-
createdAt: string;
|
|
7813
|
-
updatedAt: string;
|
|
7814
|
-
} | null;
|
|
7815
|
-
};
|
|
7816
|
-
export type CreateScheduleMutationVariables = Exact<{
|
|
7817
|
-
input: CreateScheduleInput;
|
|
7818
|
-
}>;
|
|
7819
|
-
export type CreateScheduleMutation = {
|
|
7820
|
-
createSchedule: {
|
|
7821
|
-
id: string;
|
|
7822
|
-
key: string;
|
|
7823
|
-
name: string;
|
|
7824
|
-
cron: string;
|
|
7825
|
-
isActive: boolean;
|
|
7826
|
-
createdAt: string;
|
|
7827
|
-
};
|
|
7828
|
-
};
|
|
7829
|
-
export type UpdateScheduleMutationVariables = Exact<{
|
|
7830
|
-
key: Scalars['String']['input'];
|
|
7831
|
-
input: UpdateScheduleInput;
|
|
7832
|
-
}>;
|
|
7833
|
-
export type UpdateScheduleMutation = {
|
|
7834
|
-
updateSchedule: {
|
|
7835
|
-
id: string;
|
|
7836
|
-
key: string;
|
|
7837
|
-
name: string;
|
|
7838
|
-
cron: string;
|
|
7839
|
-
isActive: boolean;
|
|
7840
|
-
updatedAt: string;
|
|
7841
|
-
};
|
|
7842
|
-
};
|
|
7843
|
-
export type DeleteScheduleMutationVariables = Exact<{
|
|
7844
|
-
key: Scalars['String']['input'];
|
|
7845
|
-
}>;
|
|
7846
|
-
export type DeleteScheduleMutation = {
|
|
7847
|
-
deleteSchedule: boolean;
|
|
7848
|
-
};
|
|
7849
|
-
export type PauseScheduleMutationVariables = Exact<{
|
|
7850
|
-
key: Scalars['String']['input'];
|
|
7851
|
-
}>;
|
|
7852
|
-
export type PauseScheduleMutation = {
|
|
7853
|
-
pauseSchedule: {
|
|
7854
|
-
id: string;
|
|
7855
|
-
key: string;
|
|
7856
|
-
isActive: boolean;
|
|
7857
|
-
pausedAt?: string | null;
|
|
7858
|
-
};
|
|
7859
|
-
};
|
|
7860
|
-
export type ResumeScheduleMutationVariables = Exact<{
|
|
7861
|
-
key: Scalars['String']['input'];
|
|
7862
|
-
}>;
|
|
7863
|
-
export type ResumeScheduleMutation = {
|
|
7864
|
-
resumeSchedule: {
|
|
7865
|
-
id: string;
|
|
7866
|
-
key: string;
|
|
7867
|
-
isActive: boolean;
|
|
7868
|
-
};
|
|
7869
|
-
};
|
|
7870
|
-
export type TriggerScheduleMutationVariables = Exact<{
|
|
7871
|
-
key: Scalars['String']['input'];
|
|
7872
|
-
}>;
|
|
7873
|
-
export type TriggerScheduleMutation = {
|
|
7874
|
-
triggerSchedule: {
|
|
7875
|
-
success: boolean;
|
|
7876
|
-
jobId?: string | null;
|
|
7877
|
-
error?: string | null;
|
|
7878
|
-
};
|
|
7879
|
-
};
|
|
7880
|
-
export type GlobalSearchQueryVariables = Exact<{
|
|
7881
|
-
query: Scalars['String']['input'];
|
|
7882
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7883
|
-
modelKeys?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
7884
|
-
includeMedia?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7885
|
-
}>;
|
|
7886
|
-
export type GlobalSearchQuery = {
|
|
7887
|
-
globalSearch: {
|
|
7888
|
-
records: Array<{
|
|
7889
|
-
id: string;
|
|
7890
|
-
modelKey: string;
|
|
7891
|
-
title: string;
|
|
7892
|
-
naturalKey: string;
|
|
7893
|
-
subtitle?: string | null;
|
|
7894
|
-
modelName?: string | null;
|
|
7895
|
-
updatedAt: string;
|
|
7896
|
-
}>;
|
|
7897
|
-
media: Array<{
|
|
7898
|
-
id: string;
|
|
7899
|
-
fileName: string;
|
|
7900
|
-
altText?: string | null;
|
|
7901
|
-
fileUrl: string;
|
|
7902
|
-
}>;
|
|
7903
|
-
};
|
|
7904
|
-
};
|
|
7905
|
-
export type ListSegmentsQueryVariables = Exact<{
|
|
7906
|
-
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7907
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7908
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7909
|
-
}>;
|
|
7910
|
-
export type ListSegmentsQuery = {
|
|
7911
|
-
segments: Array<{
|
|
7912
|
-
id: string;
|
|
7913
|
-
key: string;
|
|
7914
|
-
name: string;
|
|
7915
|
-
description?: string | null;
|
|
7916
|
-
evaluationMode: string;
|
|
7917
|
-
memberCount?: number | null;
|
|
7918
|
-
isActive: boolean;
|
|
7919
|
-
createdAt: string;
|
|
7920
|
-
updatedAt: string;
|
|
7921
|
-
}>;
|
|
7922
|
-
};
|
|
7923
|
-
export type GetSegmentQueryVariables = Exact<{
|
|
7924
|
-
id: Scalars['ID']['input'];
|
|
7925
|
-
}>;
|
|
7926
|
-
export type GetSegmentQuery = {
|
|
7927
|
-
segment?: {
|
|
7928
|
-
id: string;
|
|
7929
|
-
key: string;
|
|
7930
|
-
name: string;
|
|
7931
|
-
description?: string | null;
|
|
7932
|
-
rules: unknown;
|
|
7933
|
-
evaluationMode: string;
|
|
7934
|
-
manualMemberIds: unknown;
|
|
7935
|
-
manualMemberMode: string;
|
|
7936
|
-
memberCount?: number | null;
|
|
7937
|
-
memberCountUpdatedAt?: string | null;
|
|
7938
|
-
isActive: boolean;
|
|
7939
|
-
createdAt: string;
|
|
7940
|
-
updatedAt: string;
|
|
7941
|
-
} | null;
|
|
7942
|
-
};
|
|
7943
|
-
export type GetSegmentByKeyQueryVariables = Exact<{
|
|
7944
|
-
key: Scalars['String']['input'];
|
|
7945
|
-
}>;
|
|
7946
|
-
export type GetSegmentByKeyQuery = {
|
|
7947
|
-
segmentByKey?: {
|
|
7948
|
-
id: string;
|
|
7949
|
-
key: string;
|
|
7950
|
-
name: string;
|
|
7951
|
-
description?: string | null;
|
|
7952
|
-
rules: unknown;
|
|
7953
|
-
evaluationMode: string;
|
|
7954
|
-
manualMemberIds: unknown;
|
|
7955
|
-
manualMemberMode: string;
|
|
7956
|
-
memberCount?: number | null;
|
|
7957
|
-
memberCountUpdatedAt?: string | null;
|
|
7958
|
-
isActive: boolean;
|
|
7959
|
-
createdAt: string;
|
|
7960
|
-
updatedAt: string;
|
|
7961
|
-
} | null;
|
|
7962
|
-
};
|
|
7963
|
-
export type CreateSegmentMutationVariables = Exact<{
|
|
7964
|
-
input: CreateSegmentInput;
|
|
7965
|
-
}>;
|
|
7966
|
-
export type CreateSegmentMutation = {
|
|
7967
|
-
createSegment: {
|
|
7968
|
-
id: string;
|
|
7969
|
-
key: string;
|
|
7970
|
-
name: string;
|
|
7971
|
-
isActive: boolean;
|
|
7972
|
-
createdAt: string;
|
|
7973
|
-
};
|
|
7974
|
-
};
|
|
7975
|
-
export type UpdateSegmentMutationVariables = Exact<{
|
|
7976
|
-
id: Scalars['ID']['input'];
|
|
7977
|
-
input: UpdateSegmentInput;
|
|
7978
|
-
}>;
|
|
7979
|
-
export type UpdateSegmentMutation = {
|
|
7980
|
-
updateSegment: {
|
|
7981
|
-
id: string;
|
|
7982
|
-
key: string;
|
|
7983
|
-
name: string;
|
|
7984
|
-
isActive: boolean;
|
|
7985
|
-
updatedAt: string;
|
|
7986
|
-
};
|
|
7987
|
-
};
|
|
7988
|
-
export type DeleteSegmentMutationVariables = Exact<{
|
|
7989
|
-
id: Scalars['ID']['input'];
|
|
7990
|
-
}>;
|
|
7991
|
-
export type DeleteSegmentMutation = {
|
|
7992
|
-
deleteSegment: boolean;
|
|
7993
|
-
};
|
|
7994
|
-
export type PreviewSegmentRulesQueryVariables = Exact<{
|
|
7995
|
-
rules: Scalars['JSON']['input'];
|
|
7996
|
-
sampleSize?: InputMaybe<Scalars['Int']['input']>;
|
|
7997
|
-
}>;
|
|
7998
|
-
export type PreviewSegmentRulesQuery = {
|
|
7999
|
-
previewSegmentRules: {
|
|
8000
|
-
estimatedCount: number;
|
|
8001
|
-
sampleCustomerIds: Array<string>;
|
|
8002
|
-
sampleSize: number;
|
|
8003
|
-
};
|
|
8004
|
-
};
|
|
8005
|
-
export type TestSegmentEvaluationQueryVariables = Exact<{
|
|
8006
|
-
segmentId: Scalars['ID']['input'];
|
|
8007
|
-
customerId: Scalars['ID']['input'];
|
|
8008
|
-
}>;
|
|
8009
|
-
export type TestSegmentEvaluationQuery = {
|
|
8010
|
-
testSegmentEvaluation: {
|
|
8011
|
-
matches: boolean;
|
|
8012
|
-
segmentId: string;
|
|
8013
|
-
customerId: string;
|
|
8014
|
-
};
|
|
8015
|
-
};
|
|
8016
|
-
export type GetSessionContextQueryVariables = Exact<{
|
|
8017
|
-
[key: string]: never;
|
|
8018
|
-
}>;
|
|
8019
|
-
export type GetSessionContextQuery = {
|
|
8020
|
-
sessionContext: {
|
|
8021
|
-
tenantId?: string | null;
|
|
8022
|
-
projectId?: string | null;
|
|
8023
|
-
availableTenants: Array<{
|
|
8024
|
-
id: string;
|
|
8025
|
-
name: string;
|
|
8026
|
-
}>;
|
|
8027
|
-
availableProjects: Array<{
|
|
8028
|
-
id: string;
|
|
8029
|
-
name: string;
|
|
8030
|
-
tenantId: string;
|
|
8031
|
-
}>;
|
|
8032
|
-
};
|
|
8033
|
-
};
|
|
8034
|
-
export type AllSettingsQueryVariables = Exact<{
|
|
8035
|
-
[key: string]: never;
|
|
8036
|
-
}>;
|
|
8037
|
-
export type AllSettingsQuery = {
|
|
8038
|
-
allSettings: Array<{
|
|
8039
|
-
id: string;
|
|
8040
|
-
key: string;
|
|
8041
|
-
value?: unknown | null;
|
|
8042
|
-
category: string;
|
|
8043
|
-
displayName?: string | null;
|
|
8044
|
-
description?: string | null;
|
|
8045
|
-
dataType: SettingDataType;
|
|
8046
|
-
isPublic: boolean;
|
|
8047
|
-
isEncrypted: boolean;
|
|
8048
|
-
createdAt: string;
|
|
8049
|
-
updatedAt: string;
|
|
8050
|
-
}>;
|
|
8051
|
-
};
|
|
8052
|
-
export type SettingsByCategoryQueryVariables = Exact<{
|
|
8053
|
-
category: Scalars['String']['input'];
|
|
8054
|
-
}>;
|
|
8055
|
-
export type SettingsByCategoryQuery = {
|
|
8056
|
-
settingsByCategory: Array<{
|
|
8057
|
-
id: string;
|
|
8058
|
-
key: string;
|
|
8059
|
-
value?: unknown | null;
|
|
8060
|
-
category: string;
|
|
8061
|
-
displayName?: string | null;
|
|
8062
|
-
description?: string | null;
|
|
8063
|
-
dataType: SettingDataType;
|
|
8064
|
-
isPublic: boolean;
|
|
8065
|
-
isEncrypted: boolean;
|
|
8066
|
-
createdAt: string;
|
|
8067
|
-
updatedAt: string;
|
|
8068
|
-
}>;
|
|
8069
|
-
};
|
|
8070
|
-
export type GetSettingQueryVariables = Exact<{
|
|
8071
|
-
key: Scalars['String']['input'];
|
|
8072
|
-
}>;
|
|
8073
|
-
export type GetSettingQuery = {
|
|
8074
|
-
setting?: {
|
|
8075
|
-
id: string;
|
|
8076
|
-
key: string;
|
|
8077
|
-
value?: unknown | null;
|
|
8078
|
-
category: string;
|
|
8079
|
-
displayName?: string | null;
|
|
8080
|
-
description?: string | null;
|
|
8081
|
-
dataType: SettingDataType;
|
|
8082
|
-
isPublic: boolean;
|
|
8083
|
-
isEncrypted: boolean;
|
|
8084
|
-
createdAt: string;
|
|
8085
|
-
updatedAt: string;
|
|
8086
|
-
} | null;
|
|
8087
|
-
};
|
|
8088
|
-
export type SetSettingMutationVariables = Exact<{
|
|
8089
|
-
input: SetSettingInput;
|
|
8090
|
-
}>;
|
|
8091
|
-
export type SetSettingMutation = {
|
|
8092
|
-
setSetting: {
|
|
8093
|
-
id: string;
|
|
8094
|
-
key: string;
|
|
8095
|
-
value?: unknown | null;
|
|
8096
|
-
category: string;
|
|
8097
|
-
dataType: SettingDataType;
|
|
8098
|
-
updatedAt: string;
|
|
8099
|
-
};
|
|
8100
|
-
};
|
|
8101
|
-
export type DeleteSettingMutationVariables = Exact<{
|
|
8102
|
-
key: Scalars['String']['input'];
|
|
8103
|
-
}>;
|
|
8104
|
-
export type DeleteSettingMutation = {
|
|
8105
|
-
deleteSetting: boolean;
|
|
8106
|
-
};
|
|
8107
|
-
export type ListVariantCatalogQueryVariables = Exact<{
|
|
8108
|
-
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8109
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8110
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8111
|
-
}>;
|
|
8112
|
-
export type ListVariantCatalogQuery = {
|
|
8113
|
-
variantCatalog: Array<{
|
|
8114
|
-
id: string;
|
|
8115
|
-
key: string;
|
|
8116
|
-
name: string;
|
|
8117
|
-
description?: string | null;
|
|
8118
|
-
isDefault: boolean;
|
|
8119
|
-
isActive: boolean;
|
|
8120
|
-
createdAt: string;
|
|
8121
|
-
updatedAt: string;
|
|
8122
|
-
}>;
|
|
8123
|
-
};
|
|
8124
|
-
export type GetVariantCatalogEntryQueryVariables = Exact<{
|
|
8125
|
-
id: Scalars['ID']['input'];
|
|
8126
|
-
}>;
|
|
8127
|
-
export type GetVariantCatalogEntryQuery = {
|
|
8128
|
-
variantCatalogEntry?: {
|
|
8129
|
-
id: string;
|
|
8130
|
-
key: string;
|
|
8131
|
-
name: string;
|
|
8132
|
-
description?: string | null;
|
|
8133
|
-
isDefault: boolean;
|
|
8134
|
-
isActive: boolean;
|
|
8135
|
-
createdAt: string;
|
|
8136
|
-
updatedAt: string;
|
|
8137
|
-
} | null;
|
|
8138
|
-
};
|
|
8139
|
-
export type GetVariantCatalogEntryByKeyQueryVariables = Exact<{
|
|
8140
|
-
key: Scalars['String']['input'];
|
|
8141
|
-
}>;
|
|
8142
|
-
export type GetVariantCatalogEntryByKeyQuery = {
|
|
8143
|
-
variantCatalogEntryByKey?: {
|
|
8144
|
-
id: string;
|
|
8145
|
-
key: string;
|
|
8146
|
-
name: string;
|
|
8147
|
-
description?: string | null;
|
|
8148
|
-
isDefault: boolean;
|
|
8149
|
-
isActive: boolean;
|
|
8150
|
-
createdAt: string;
|
|
8151
|
-
updatedAt: string;
|
|
8152
|
-
} | null;
|
|
8153
|
-
};
|
|
8154
|
-
export type CreateVariantCatalogEntryMutationVariables = Exact<{
|
|
8155
|
-
input: CreateVariantCatalogInput;
|
|
8156
|
-
}>;
|
|
8157
|
-
export type CreateVariantCatalogEntryMutation = {
|
|
8158
|
-
createVariantCatalogEntry: {
|
|
8159
|
-
id: string;
|
|
8160
|
-
key: string;
|
|
8161
|
-
name: string;
|
|
8162
|
-
isDefault: boolean;
|
|
8163
|
-
isActive: boolean;
|
|
8164
|
-
createdAt: string;
|
|
8165
|
-
};
|
|
8166
|
-
};
|
|
8167
|
-
export type UpdateVariantCatalogEntryMutationVariables = Exact<{
|
|
8168
|
-
id: Scalars['ID']['input'];
|
|
8169
|
-
input: UpdateVariantCatalogInput;
|
|
8170
|
-
}>;
|
|
8171
|
-
export type UpdateVariantCatalogEntryMutation = {
|
|
8172
|
-
updateVariantCatalogEntry: {
|
|
8173
|
-
id: string;
|
|
8174
|
-
key: string;
|
|
8175
|
-
name: string;
|
|
8176
|
-
isDefault: boolean;
|
|
8177
|
-
isActive: boolean;
|
|
8178
|
-
updatedAt: string;
|
|
8179
|
-
};
|
|
8180
|
-
};
|
|
8181
|
-
export type DeleteVariantCatalogEntryMutationVariables = Exact<{
|
|
8182
|
-
id: Scalars['ID']['input'];
|
|
8183
|
-
}>;
|
|
8184
|
-
export type DeleteVariantCatalogEntryMutation = {
|
|
8185
|
-
deleteVariantCatalogEntry: boolean;
|
|
8186
|
-
};
|
|
8187
|
-
export declare const ListApiKeysDocument: DocumentNode<ListApiKeysQuery, ListApiKeysQueryVariables>;
|
|
8188
|
-
export declare const GetApiKeyDocument: DocumentNode<GetApiKeyQuery, GetApiKeyQueryVariables>;
|
|
8189
|
-
export declare const CreateApiKeyDocument: DocumentNode<CreateApiKeyMutation, CreateApiKeyMutationVariables>;
|
|
8190
|
-
export declare const RotateApiKeyDocument: DocumentNode<RotateApiKeyMutation, RotateApiKeyMutationVariables>;
|
|
8191
|
-
export declare const RevokeApiKeyDocument: DocumentNode<RevokeApiKeyMutation, RevokeApiKeyMutationVariables>;
|
|
8192
|
-
export declare const ListAuthProvidersDocument: DocumentNode<ListAuthProvidersQuery, ListAuthProvidersQueryVariables>;
|
|
8193
|
-
export declare const GetAuthProviderDocument: DocumentNode<GetAuthProviderQuery, GetAuthProviderQueryVariables>;
|
|
8194
|
-
export declare const CreateAuthProviderDocument: DocumentNode<CreateAuthProviderMutation, CreateAuthProviderMutationVariables>;
|
|
8195
|
-
export declare const UpdateAuthProviderDocument: DocumentNode<UpdateAuthProviderMutation, UpdateAuthProviderMutationVariables>;
|
|
8196
|
-
export declare const DeleteAuthProviderDocument: DocumentNode<DeleteAuthProviderMutation, DeleteAuthProviderMutationVariables>;
|
|
8197
|
-
export declare const GetCustomerAuthConfigDocument: DocumentNode<GetCustomerAuthConfigQuery, GetCustomerAuthConfigQueryVariables>;
|
|
8198
|
-
export declare const VerifyCustomerTokenDocument: DocumentNode<VerifyCustomerTokenQuery, VerifyCustomerTokenQueryVariables>;
|
|
8199
6071
|
export declare const GetCustomerProfileSchemaDocument: DocumentNode<GetCustomerProfileSchemaQuery, GetCustomerProfileSchemaQueryVariables>;
|
|
8200
|
-
export declare const UpdateCustomerProfileSchemaDocument: DocumentNode<UpdateCustomerProfileSchemaMutation, UpdateCustomerProfileSchemaMutationVariables>;
|
|
8201
|
-
export declare const GetCustomerProfileDocument: DocumentNode<GetCustomerProfileQuery, GetCustomerProfileQueryVariables>;
|
|
8202
|
-
export declare const SetCustomerProfileDocument: DocumentNode<SetCustomerProfileMutation, SetCustomerProfileMutationVariables>;
|
|
8203
|
-
export declare const ListCustomersDocument: DocumentNode<ListCustomersQuery, ListCustomersQueryVariables>;
|
|
8204
|
-
export declare const GetCustomerDocument: DocumentNode<GetCustomerQuery, GetCustomerQueryVariables>;
|
|
8205
|
-
export declare const GetCustomerByEmailDocument: DocumentNode<GetCustomerByEmailQuery, GetCustomerByEmailQueryVariables>;
|
|
8206
|
-
export declare const CreateCustomerDocument: DocumentNode<CreateCustomerMutation, CreateCustomerMutationVariables>;
|
|
8207
|
-
export declare const DeleteCustomerDocument: DocumentNode<DeleteCustomerMutation, DeleteCustomerMutationVariables>;
|
|
8208
|
-
export declare const WriteEmbeddingsDocument: DocumentNode<WriteEmbeddingsMutation, WriteEmbeddingsMutationVariables>;
|
|
8209
|
-
export declare const DeleteEmbeddingsDocument: DocumentNode<DeleteEmbeddingsMutation, DeleteEmbeddingsMutationVariables>;
|
|
8210
|
-
export declare const SearchEmbeddingsDocument: DocumentNode<SearchEmbeddingsQuery, SearchEmbeddingsQueryVariables>;
|
|
8211
|
-
export declare const EmbeddingsForRecordDocument: DocumentNode<EmbeddingsForRecordQuery, EmbeddingsForRecordQueryVariables>;
|
|
8212
|
-
export declare const EmbeddingStatsDocument: DocumentNode<EmbeddingStatsQuery, EmbeddingStatsQueryVariables>;
|
|
8213
|
-
export declare const FindSimilarRecordsDocument: DocumentNode<FindSimilarRecordsQuery, FindSimilarRecordsQueryVariables>;
|
|
8214
|
-
export declare const ListExperimentsDocument: DocumentNode<ListExperimentsQuery, ListExperimentsQueryVariables>;
|
|
8215
|
-
export declare const GetExperimentDocument: DocumentNode<GetExperimentQuery, GetExperimentQueryVariables>;
|
|
8216
|
-
export declare const GetExperimentByKeyDocument: DocumentNode<GetExperimentByKeyQuery, GetExperimentByKeyQueryVariables>;
|
|
8217
|
-
export declare const CreateExperimentDocument: DocumentNode<CreateExperimentMutation, CreateExperimentMutationVariables>;
|
|
8218
|
-
export declare const UpdateExperimentDocument: DocumentNode<UpdateExperimentMutation, UpdateExperimentMutationVariables>;
|
|
8219
|
-
export declare const DeleteExperimentDocument: DocumentNode<DeleteExperimentMutation, DeleteExperimentMutationVariables>;
|
|
8220
|
-
export declare const StartExperimentDocument: DocumentNode<StartExperimentMutation, StartExperimentMutationVariables>;
|
|
8221
|
-
export declare const PauseExperimentDocument: DocumentNode<PauseExperimentMutation, PauseExperimentMutationVariables>;
|
|
8222
|
-
export declare const ResumeExperimentDocument: DocumentNode<ResumeExperimentMutation, ResumeExperimentMutationVariables>;
|
|
8223
|
-
export declare const EndExperimentDocument: DocumentNode<EndExperimentMutation, EndExperimentMutationVariables>;
|
|
8224
|
-
export declare const ExperimentStatsDocument: DocumentNode<ExperimentStatsQuery, ExperimentStatsQueryVariables>;
|
|
8225
|
-
export declare const ListExtensionsDocument: DocumentNode<ListExtensionsQuery, ListExtensionsQueryVariables>;
|
|
8226
|
-
export declare const GetExtensionDocument: DocumentNode<GetExtensionQuery, GetExtensionQueryVariables>;
|
|
8227
|
-
export declare const GetExtensionByKeyDocument: DocumentNode<GetExtensionByKeyQuery, GetExtensionByKeyQueryVariables>;
|
|
8228
|
-
export declare const RegisterExtensionDocument: DocumentNode<RegisterExtensionMutation, RegisterExtensionMutationVariables>;
|
|
8229
|
-
export declare const TriggerExtensionSyncDocument: DocumentNode<TriggerExtensionSyncMutation, TriggerExtensionSyncMutationVariables>;
|
|
8230
|
-
export declare const InstallExtensionDocument: DocumentNode<InstallExtensionMutation, InstallExtensionMutationVariables>;
|
|
8231
|
-
export declare const UnregisterExtensionDocument: DocumentNode<UnregisterExtensionMutation, UnregisterExtensionMutationVariables>;
|
|
8232
|
-
export declare const ListFilesDocument: DocumentNode<ListFilesQuery, ListFilesQueryVariables>;
|
|
8233
|
-
export declare const GetFileDocument: DocumentNode<GetFileQuery, GetFileQueryVariables>;
|
|
8234
|
-
export declare const FileStorageUsageDocument: DocumentNode<FileStorageUsageQuery, FileStorageUsageQueryVariables>;
|
|
8235
|
-
export declare const UpdateFileDocument: DocumentNode<UpdateFileMutation, UpdateFileMutationVariables>;
|
|
8236
|
-
export declare const UpdateFileMetadataDocument: DocumentNode<UpdateFileMetadataMutation, UpdateFileMetadataMutationVariables>;
|
|
8237
|
-
export declare const DeleteFileDocument: DocumentNode<DeleteFileMutation, DeleteFileMutationVariables>;
|
|
8238
|
-
export declare const ListHooksDocument: DocumentNode<ListHooksQuery, ListHooksQueryVariables>;
|
|
8239
|
-
export declare const GetHookByKeyDocument: DocumentNode<GetHookByKeyQuery, GetHookByKeyQueryVariables>;
|
|
8240
|
-
export declare const CreateHookDocument: DocumentNode<CreateHookMutation, CreateHookMutationVariables>;
|
|
8241
|
-
export declare const UpdateHookDocument: DocumentNode<UpdateHookMutation, UpdateHookMutationVariables>;
|
|
8242
|
-
export declare const DeleteHookDocument: DocumentNode<DeleteHookMutation, DeleteHookMutationVariables>;
|
|
8243
|
-
export declare const HookDeliveriesDocument: DocumentNode<HookDeliveriesQuery, HookDeliveriesQueryVariables>;
|
|
8244
|
-
export declare const RetryHookDeliveryDocument: DocumentNode<RetryHookDeliveryMutation, RetryHookDeliveryMutationVariables>;
|
|
8245
|
-
export declare const TestHookDocument: DocumentNode<TestHookMutation, TestHookMutationVariables>;
|
|
8246
|
-
export declare const ListLocalesDocument: DocumentNode<ListLocalesQuery, ListLocalesQueryVariables>;
|
|
8247
|
-
export declare const GetLocaleDocument: DocumentNode<GetLocaleQuery, GetLocaleQueryVariables>;
|
|
8248
|
-
export declare const GetLocaleByCodeDocument: DocumentNode<GetLocaleByCodeQuery, GetLocaleByCodeQueryVariables>;
|
|
8249
|
-
export declare const GetDefaultLocaleDocument: DocumentNode<GetDefaultLocaleQuery, GetDefaultLocaleQueryVariables>;
|
|
8250
|
-
export declare const CreateLocaleDocument: DocumentNode<CreateLocaleMutation, CreateLocaleMutationVariables>;
|
|
8251
|
-
export declare const UpdateLocaleDocument: DocumentNode<UpdateLocaleMutation, UpdateLocaleMutationVariables>;
|
|
8252
|
-
export declare const DeleteLocaleDocument: DocumentNode<DeleteLocaleMutation, DeleteLocaleMutationVariables>;
|
|
8253
6072
|
export declare const ModelsForCodegenDocument: DocumentNode<ModelsForCodegenQuery, ModelsForCodegenQueryVariables>;
|
|
8254
|
-
export declare const GetModelByKeyDocument: DocumentNode<GetModelByKeyQuery, GetModelByKeyQueryVariables>;
|
|
8255
|
-
export declare const ListModelsDocument: DocumentNode<ListModelsQuery, ListModelsQueryVariables>;
|
|
8256
|
-
export declare const CreateModelDocument: DocumentNode<CreateModelMutation, CreateModelMutationVariables>;
|
|
8257
|
-
export declare const UpdateModelDocument: DocumentNode<UpdateModelMutation, UpdateModelMutationVariables>;
|
|
8258
|
-
export declare const DeleteModelDocument: DocumentNode<DeleteModelMutation, DeleteModelMutationVariables>;
|
|
8259
|
-
export declare const ModelVersionsDocument: DocumentNode<ModelVersionsQuery, ModelVersionsQueryVariables>;
|
|
8260
|
-
export declare const ListNotesDocument: DocumentNode<ListNotesQuery, ListNotesQueryVariables>;
|
|
8261
|
-
export declare const GetNoteDocument: DocumentNode<GetNoteQuery, GetNoteQueryVariables>;
|
|
8262
|
-
export declare const CreateNoteDocument: DocumentNode<CreateNoteMutation, CreateNoteMutationVariables>;
|
|
8263
|
-
export declare const ResolveNoteDocument: DocumentNode<ResolveNoteMutation, ResolveNoteMutationVariables>;
|
|
8264
|
-
export declare const DeleteNoteDocument: DocumentNode<DeleteNoteMutation, DeleteNoteMutationVariables>;
|
|
8265
|
-
export declare const ListNotificationsDocument: DocumentNode<ListNotificationsQuery, ListNotificationsQueryVariables>;
|
|
8266
|
-
export declare const MarkNotificationReadDocument: DocumentNode<MarkNotificationReadMutation, MarkNotificationReadMutationVariables>;
|
|
8267
|
-
export declare const MarkAllNotificationsReadDocument: DocumentNode<MarkAllNotificationsReadMutation, MarkAllNotificationsReadMutationVariables>;
|
|
8268
|
-
export declare const ListOperationsDocument: DocumentNode<ListOperationsQuery, ListOperationsQueryVariables>;
|
|
8269
|
-
export declare const GetOperationDocument: DocumentNode<GetOperationQuery, GetOperationQueryVariables>;
|
|
8270
|
-
export declare const ExecuteOperationDocument: DocumentNode<ExecuteOperationMutation, ExecuteOperationMutationVariables>;
|
|
8271
|
-
export declare const OperationExecutionStatsDocument: DocumentNode<OperationExecutionStatsQuery, OperationExecutionStatsQueryVariables>;
|
|
8272
|
-
export declare const DeadLetterOperationsDocument: DocumentNode<DeadLetterOperationsQuery, DeadLetterOperationsQueryVariables>;
|
|
8273
|
-
export declare const RetryDeadLetterDocument: DocumentNode<RetryDeadLetterMutation, RetryDeadLetterMutationVariables>;
|
|
8274
|
-
export declare const DismissDeadLetterDocument: DocumentNode<DismissDeadLetterMutation, DismissDeadLetterMutationVariables>;
|
|
8275
|
-
export declare const CreateOperationDocument: DocumentNode<CreateOperationMutation, CreateOperationMutationVariables>;
|
|
8276
|
-
export declare const UpdateOperationDocument: DocumentNode<UpdateOperationMutation, UpdateOperationMutationVariables>;
|
|
8277
|
-
export declare const DeleteOperationDocument: DocumentNode<DeleteOperationMutation, DeleteOperationMutationVariables>;
|
|
8278
|
-
export declare const GetRecordDocument: DocumentNode<GetRecordQuery, GetRecordQueryVariables>;
|
|
8279
|
-
export declare const GetRecordResolvedDocument: DocumentNode<GetRecordResolvedQuery, GetRecordResolvedQueryVariables>;
|
|
8280
|
-
export declare const GetRecordByKeyDocument: DocumentNode<GetRecordByKeyQuery, GetRecordByKeyQueryVariables>;
|
|
8281
|
-
export declare const GetRecordByKeyResolvedDocument: DocumentNode<GetRecordByKeyResolvedQuery, GetRecordByKeyResolvedQueryVariables>;
|
|
8282
|
-
export declare const ListRecordsDocument: DocumentNode<ListRecordsQuery, ListRecordsQueryVariables>;
|
|
8283
|
-
export declare const CreateRecordDocument: DocumentNode<CreateRecordMutation, CreateRecordMutationVariables>;
|
|
8284
|
-
export declare const UpdateRecordDocument: DocumentNode<UpdateRecordMutation, UpdateRecordMutationVariables>;
|
|
8285
|
-
export declare const DeleteRecordDocument: DocumentNode<DeleteRecordMutation, DeleteRecordMutationVariables>;
|
|
8286
|
-
export declare const PublishVersionDocument: DocumentNode<PublishVersionMutation, PublishVersionMutationVariables>;
|
|
8287
|
-
export declare const UnpublishRecordDocument: DocumentNode<UnpublishRecordMutation, UnpublishRecordMutationVariables>;
|
|
8288
|
-
export declare const DuplicateRecordDocument: DocumentNode<DuplicateRecordMutation, DuplicateRecordMutationVariables>;
|
|
8289
|
-
export declare const CreateVersionDocument: DocumentNode<CreateVersionMutation, CreateVersionMutationVariables>;
|
|
8290
|
-
export declare const CreateVariantDocument: DocumentNode<CreateVariantMutation, CreateVariantMutationVariables>;
|
|
8291
|
-
export declare const RecordVersionsDocument: DocumentNode<RecordVersionsQuery, RecordVersionsQueryVariables>;
|
|
8292
|
-
export declare const RecordVariantsDocument: DocumentNode<RecordVariantsQuery, RecordVariantsQueryVariables>;
|
|
8293
|
-
export declare const ListSchedulesDocument: DocumentNode<ListSchedulesQuery, ListSchedulesQueryVariables>;
|
|
8294
|
-
export declare const GetScheduleDocument: DocumentNode<GetScheduleQuery, GetScheduleQueryVariables>;
|
|
8295
|
-
export declare const CreateScheduleDocument: DocumentNode<CreateScheduleMutation, CreateScheduleMutationVariables>;
|
|
8296
|
-
export declare const UpdateScheduleDocument: DocumentNode<UpdateScheduleMutation, UpdateScheduleMutationVariables>;
|
|
8297
|
-
export declare const DeleteScheduleDocument: DocumentNode<DeleteScheduleMutation, DeleteScheduleMutationVariables>;
|
|
8298
|
-
export declare const PauseScheduleDocument: DocumentNode<PauseScheduleMutation, PauseScheduleMutationVariables>;
|
|
8299
|
-
export declare const ResumeScheduleDocument: DocumentNode<ResumeScheduleMutation, ResumeScheduleMutationVariables>;
|
|
8300
|
-
export declare const TriggerScheduleDocument: DocumentNode<TriggerScheduleMutation, TriggerScheduleMutationVariables>;
|
|
8301
6073
|
export declare const GlobalSearchDocument: DocumentNode<GlobalSearchQuery, GlobalSearchQueryVariables>;
|
|
8302
|
-
export declare const ListSegmentsDocument: DocumentNode<ListSegmentsQuery, ListSegmentsQueryVariables>;
|
|
8303
|
-
export declare const GetSegmentDocument: DocumentNode<GetSegmentQuery, GetSegmentQueryVariables>;
|
|
8304
|
-
export declare const GetSegmentByKeyDocument: DocumentNode<GetSegmentByKeyQuery, GetSegmentByKeyQueryVariables>;
|
|
8305
|
-
export declare const CreateSegmentDocument: DocumentNode<CreateSegmentMutation, CreateSegmentMutationVariables>;
|
|
8306
|
-
export declare const UpdateSegmentDocument: DocumentNode<UpdateSegmentMutation, UpdateSegmentMutationVariables>;
|
|
8307
|
-
export declare const DeleteSegmentDocument: DocumentNode<DeleteSegmentMutation, DeleteSegmentMutationVariables>;
|
|
8308
|
-
export declare const PreviewSegmentRulesDocument: DocumentNode<PreviewSegmentRulesQuery, PreviewSegmentRulesQueryVariables>;
|
|
8309
|
-
export declare const TestSegmentEvaluationDocument: DocumentNode<TestSegmentEvaluationQuery, TestSegmentEvaluationQueryVariables>;
|
|
8310
|
-
export declare const GetSessionContextDocument: DocumentNode<GetSessionContextQuery, GetSessionContextQueryVariables>;
|
|
8311
|
-
export declare const AllSettingsDocument: DocumentNode<AllSettingsQuery, AllSettingsQueryVariables>;
|
|
8312
|
-
export declare const SettingsByCategoryDocument: DocumentNode<SettingsByCategoryQuery, SettingsByCategoryQueryVariables>;
|
|
8313
|
-
export declare const GetSettingDocument: DocumentNode<GetSettingQuery, GetSettingQueryVariables>;
|
|
8314
|
-
export declare const SetSettingDocument: DocumentNode<SetSettingMutation, SetSettingMutationVariables>;
|
|
8315
|
-
export declare const DeleteSettingDocument: DocumentNode<DeleteSettingMutation, DeleteSettingMutationVariables>;
|
|
8316
|
-
export declare const ListVariantCatalogDocument: DocumentNode<ListVariantCatalogQuery, ListVariantCatalogQueryVariables>;
|
|
8317
|
-
export declare const GetVariantCatalogEntryDocument: DocumentNode<GetVariantCatalogEntryQuery, GetVariantCatalogEntryQueryVariables>;
|
|
8318
|
-
export declare const GetVariantCatalogEntryByKeyDocument: DocumentNode<GetVariantCatalogEntryByKeyQuery, GetVariantCatalogEntryByKeyQueryVariables>;
|
|
8319
|
-
export declare const CreateVariantCatalogEntryDocument: DocumentNode<CreateVariantCatalogEntryMutation, CreateVariantCatalogEntryMutationVariables>;
|
|
8320
|
-
export declare const UpdateVariantCatalogEntryDocument: DocumentNode<UpdateVariantCatalogEntryMutation, UpdateVariantCatalogEntryMutationVariables>;
|
|
8321
|
-
export declare const DeleteVariantCatalogEntryDocument: DocumentNode<DeleteVariantCatalogEntryMutation, DeleteVariantCatalogEntryMutationVariables>;
|
|
8322
6074
|
//# sourceMappingURL=generated.d.ts.map
|