@bigfootai/bigfoot-types 5.4.259 → 5.4.261

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.
Files changed (69) hide show
  1. package/dist/block-activity.d.ts +67 -3
  2. package/dist/block-activity.d.ts.map +1 -1
  3. package/dist/block-activity.js +80 -0
  4. package/dist/block-activity.js.map +1 -1
  5. package/dist/execute-query.d.ts +45 -0
  6. package/dist/execute-query.d.ts.map +1 -0
  7. package/dist/execute-query.js +31 -0
  8. package/dist/execute-query.js.map +1 -0
  9. package/dist/field-value.d.ts +12 -5
  10. package/dist/field-value.d.ts.map +1 -1
  11. package/dist/field-value.js +16 -1
  12. package/dist/field-value.js.map +1 -1
  13. package/dist/index.d.ts +3 -0
  14. package/dist/index.d.ts.map +1 -1
  15. package/dist/index.js +3 -0
  16. package/dist/index.js.map +1 -1
  17. package/dist/installed-function.d.ts +5 -5
  18. package/dist/installed-function.d.ts.map +1 -1
  19. package/dist/installed-function.js +7 -7
  20. package/dist/installed-function.js.map +1 -1
  21. package/dist/installed-query.d.ts +18 -0
  22. package/dist/installed-query.d.ts.map +1 -0
  23. package/dist/installed-query.js +38 -0
  24. package/dist/installed-query.js.map +1 -0
  25. package/dist/metadata/providers/noded.d.ts +0 -1
  26. package/dist/metadata/providers/noded.d.ts.map +1 -1
  27. package/dist/metadata/providers/noded.js +2 -15
  28. package/dist/metadata/providers/noded.js.map +1 -1
  29. package/dist/metadata-change.d.ts +27 -3
  30. package/dist/metadata-change.d.ts.map +1 -1
  31. package/dist/metadata-change.js +31 -0
  32. package/dist/metadata-change.js.map +1 -1
  33. package/dist/provider.d.ts +9 -2
  34. package/dist/provider.d.ts.map +1 -1
  35. package/dist/provider.js +3 -0
  36. package/dist/provider.js.map +1 -1
  37. package/dist/query-metadata.d.ts +27 -0
  38. package/dist/query-metadata.d.ts.map +1 -0
  39. package/dist/query-metadata.js +50 -0
  40. package/dist/query-metadata.js.map +1 -0
  41. package/dist/recommendation.d.ts +2 -2
  42. package/dist/recommendation.d.ts.map +1 -1
  43. package/dist/signal.d.ts +24 -0
  44. package/dist/signal.d.ts.map +1 -1
  45. package/dist/signal.js +23 -0
  46. package/dist/signal.js.map +1 -1
  47. package/dist/table.d.ts +15 -2
  48. package/dist/table.d.ts.map +1 -1
  49. package/dist/table.js +14 -0
  50. package/dist/table.js.map +1 -1
  51. package/dist/types.d.ts +49 -2
  52. package/dist/types.d.ts.map +1 -1
  53. package/dist/types.js +90 -5
  54. package/dist/types.js.map +1 -1
  55. package/package.json +1 -1
  56. package/src/block-activity.ts +152 -0
  57. package/src/execute-query.ts +80 -0
  58. package/src/field-value.ts +28 -4
  59. package/src/index.ts +3 -0
  60. package/src/installed-function.ts +8 -6
  61. package/src/installed-query.ts +53 -0
  62. package/src/metadata/providers/noded.ts +2 -17
  63. package/src/metadata-change.ts +62 -0
  64. package/src/provider.ts +9 -0
  65. package/src/query-metadata.ts +72 -0
  66. package/src/recommendation.ts +2 -2
  67. package/src/signal.ts +51 -0
  68. package/src/table.ts +14 -0
  69. package/src/types.ts +164 -5
@@ -1,5 +1,6 @@
1
1
  import type { Agent } from './agent.js';
2
2
  import type { Field } from './field.js';
3
+ import type { InstalledFunction } from './installed-function.js';
3
4
  import type { PendingMetadataChange } from './pending-metadata-change.js';
4
5
  import type { Table } from './table.js';
5
6
  import type { Tag } from './tag.js';
@@ -10,12 +11,16 @@ export const MetadataChangeTypeQL = `
10
11
  DELETE_FIELD
11
12
  DELETE_FOLDER
12
13
  UPDATE_FOLDER_TAGS
14
+ UNINSTALL_FUNCTION
15
+ UNINSTALL_QUERY
13
16
  }`;
14
17
  export enum MetadataChangeType {
15
18
  DeleteTable = 'delete_table',
16
19
  DeleteField = 'delete_field',
17
20
  DeleteFolder = 'delete_folder',
18
21
  UpdateFolderTags = 'update_folder_tags',
22
+ UninstallFunction = 'uninstall_function',
23
+ UninstallQuery = 'uninstall_query',
19
24
  }
20
25
 
21
26
  export const MetadataChangeImpactLevelQL = `
@@ -33,6 +38,8 @@ export enum MetadataChangeImpactLevel {
33
38
  export interface AssessMetadataChangeInput {
34
39
  fieldName?: string;
35
40
  folderId?: string;
41
+ functionId?: string;
42
+ queryId?: string;
36
43
  tableId?: string;
37
44
  tagIdsToRemove?: string[];
38
45
  type: MetadataChangeType;
@@ -40,11 +47,26 @@ export interface AssessMetadataChangeInput {
40
47
 
41
48
  export interface MetadataChangeDependencies {
42
49
  agents: AgentDependency[];
50
+ functions: FunctionDependency[];
51
+ invocations: FunctionInvocationDependency;
43
52
  records: RecordDependency;
44
53
  signals: SignalDependency[];
45
54
  tags: TagDependency[];
46
55
  }
47
56
 
57
+ // Used by `UninstallFunction` changes — surfaces other-tenant FunctionInvocation
58
+ // blocks so reviewers can see who would lose the install. Shape mirrors
59
+ // `RecordDependency` (count + per-tenant breakdown) since "Major when others have
60
+ // used this" is the same impact question.
61
+ export interface FunctionInvocationDependency {
62
+ count: number;
63
+ invokedByTenants: {
64
+ count: number;
65
+ lastInvokedAt: number;
66
+ tag: Tag;
67
+ }[];
68
+ }
69
+
48
70
  export interface AgentDependency {
49
71
  action: 'disable';
50
72
  agent: Agent | null;
@@ -52,6 +74,17 @@ export interface AgentDependency {
52
74
  triggerReference: string;
53
75
  }
54
76
 
77
+ export interface FunctionDependency {
78
+ // `disable_and_unbind` is the only action today: we flip `enabled=false` on the
79
+ // function (so Nelly stops recommending it) and rewrite any inputs whose
80
+ // `valueSource` targeted the deleted signal back to `userInput`.
81
+ action: 'disable_and_unbind';
82
+ function: InstalledFunction | null;
83
+ hasInvocations: boolean;
84
+ inputNames: string[];
85
+ owner: Tag;
86
+ }
87
+
55
88
  export interface SignalDependency {
56
89
  action: 'remove_signal' | 'remove_data_reference';
57
90
  field: Field | null;
@@ -86,6 +119,8 @@ export interface AssessMetadataChangeResult {
86
119
 
87
120
  export interface CleanupSummary {
88
121
  agentsDisabled: number;
122
+ functionsDisabled: number;
123
+ functionInputsUnbound: number;
89
124
  signalReferencesRemoved: number;
90
125
  signalsRemoved: number;
91
126
  tagsUpdated: number;
@@ -113,6 +148,8 @@ export const MetadataChangeQL = `
113
148
  input AssessMetadataChangeInput {
114
149
  fieldName: String
115
150
  folderId: String
151
+ functionId: String
152
+ queryId: String
116
153
  tableId: String
117
154
  tagIdsToRemove: [String!]
118
155
  type: MetadataChangeType!
@@ -121,6 +158,8 @@ export const MetadataChangeQL = `
121
158
  type AssessMetadataChangeSpec {
122
159
  fieldName: String
123
160
  folderId: String
161
+ functionId: String
162
+ queryId: String
124
163
  tableId: String
125
164
  tagIdsToRemove: [String!]
126
165
  type: MetadataChangeType!
@@ -133,6 +172,14 @@ export const MetadataChangeQL = `
133
172
  triggerReference: String!
134
173
  }
135
174
 
175
+ type FunctionDependency {
176
+ action: String!
177
+ function: InstalledFunction
178
+ hasInvocations: Boolean!
179
+ inputNames: [String!]!
180
+ owner: Tag!
181
+ }
182
+
136
183
  type SignalDependency {
137
184
  action: String!
138
185
  field: Field
@@ -156,8 +203,21 @@ export const MetadataChangeQL = `
156
203
  generatedByTenants: [GeneratedByTenantRecordDependency!]!
157
204
  }
158
205
 
206
+ type InvokedByTenantFunctionDependency {
207
+ count: Int!
208
+ lastInvokedAt: Float!
209
+ tag: Tag!
210
+ }
211
+
212
+ type FunctionInvocationDependency {
213
+ count: Int!
214
+ invokedByTenants: [InvokedByTenantFunctionDependency!]!
215
+ }
216
+
159
217
  type MetadataChangeDependencies {
160
218
  agents: [AgentDependency!]!
219
+ functions: [FunctionDependency!]!
220
+ invocations: FunctionInvocationDependency!
161
221
  records: RecordDependency!
162
222
  signals: [SignalDependency!]!
163
223
  tags: [TagDependency!]!
@@ -176,6 +236,8 @@ export const MetadataChangeQL = `
176
236
 
177
237
  type CleanupSummary {
178
238
  agentsDisabled: Int!
239
+ functionsDisabled: Int!
240
+ functionInputsUnbound: Int!
179
241
  signalReferencesRemoved: Int!
180
242
  signalsRemoved: Int!
181
243
  tagsUpdated: Int!
package/src/provider.ts CHANGED
@@ -3,6 +3,7 @@ import type { Field } from './field.js';
3
3
  import type { FunctionMetadata } from './function-metadata.js';
4
4
  import { Metadata, MetadataFields } from './metadata.js';
5
5
  import { Primitive, PrimitiveFields } from './primitive.js';
6
+ import type { QueryMetadata } from './query-metadata.js';
6
7
  import type { TableMetadata } from './table-metadata.js';
7
8
  import type { TagType } from './tag-type.js';
8
9
 
@@ -154,6 +155,11 @@ export interface ProviderApplication {
154
155
  * `recordTypeSubscriptions` ties tables to applications.
155
156
  */
156
157
  functionTypeSubscriptions?: string[];
158
+ /**
159
+ * Names (metadataTypes) of the queries in the parent Provider's
160
+ * `queryMetadata` array that this application exposes.
161
+ */
162
+ queryTypeSubscriptions?: string[];
157
163
  tagTypeSubscriptions?: TagTypeSubscription[];
158
164
  webhookSubscriptions?: WebhookSubscription[];
159
165
  externalIds?: ExternalId[];
@@ -177,6 +183,7 @@ type ProviderApplication {
177
183
  recordTypeSubscriptions: [String]
178
184
  documentTypeSubscriptions: [String]
179
185
  functionTypeSubscriptions: [String]
186
+ queryTypeSubscriptions: [String]
180
187
  tagTypeSubscriptions: [TagTypeSubscription]
181
188
  webhookSubscriptions: [WebhookSubscription]
182
189
  externalIds: [ExternalId]
@@ -243,6 +250,7 @@ export class Provider extends Primitive {
243
250
  tableMetadata?: TableMetadata[];
244
251
  documentMetadata?: DocumentMetadata[];
245
252
  functionMetadata?: FunctionMetadata[];
253
+ queryMetadata?: QueryMetadata[];
246
254
  _tenantId?: string;
247
255
 
248
256
  constructor(
@@ -275,5 +283,6 @@ type Provider {${PrimitiveFields}
275
283
  tableMetadata: [TableMetadata]
276
284
  documentMetadata: [DocumentMetadata]
277
285
  functionMetadata: [FunctionMetadata]
286
+ queryMetadata: [QueryMetadata]
278
287
  subscriptionPubSubType: String
279
288
  }`;
@@ -0,0 +1,72 @@
1
+ import type { Field } from './field.js';
2
+ import { Metadata, MetadataFields, MetadataInputFields } from './metadata.js';
3
+
4
+ export enum SearchOperator {
5
+ Between = 'between',
6
+ Contains = 'contains',
7
+ Equals = 'equals',
8
+ Gte = 'gte',
9
+ Lte = 'lte',
10
+ StartsWith = 'starts_with',
11
+ }
12
+
13
+ export const SearchOperatorQL = `
14
+ enum SearchOperator {
15
+ between
16
+ contains
17
+ equals
18
+ gte
19
+ lte
20
+ starts_with
21
+ }`;
22
+
23
+ export type QuerySearchFieldDefaultFor = 'date_created' | 'email' | 'name' | 'title' | 'url';
24
+
25
+ export interface QuerySearchField {
26
+ defaultFor?: QuerySearchFieldDefaultFor;
27
+ field: Field;
28
+ operators: SearchOperator[];
29
+ }
30
+
31
+ export const QuerySearchFieldQL = `
32
+ type QuerySearchField {
33
+ defaultFor: String
34
+ field: Field!
35
+ operators: [SearchOperator!]!
36
+ }`;
37
+
38
+ export const QuerySearchFieldInputQL = `
39
+ input QuerySearchFieldInput {
40
+ defaultFor: String
41
+ field: FieldInput!
42
+ operators: [SearchOperator!]!
43
+ }`;
44
+
45
+ export const QueryMetadataInputQL = `
46
+ input QueryMetadataInput {${MetadataInputFields}
47
+ searchFields: [QuerySearchFieldInput]
48
+ invocationGuidance: String
49
+ }`;
50
+
51
+ export const QueryMetadataQL = `
52
+ type QueryMetadata {${MetadataFields}
53
+ searchFields: [QuerySearchField!]!
54
+ invocationGuidance: String
55
+ }`;
56
+
57
+ export class QueryMetadata extends Metadata {
58
+ searchFields: QuerySearchField[];
59
+ invocationGuidance?: string;
60
+
61
+ constructor(
62
+ label: string,
63
+ description: string,
64
+ metadataType: string,
65
+ searchFields: QuerySearchField[],
66
+ classifiers: string[] = [],
67
+ threshold = 0,
68
+ ) {
69
+ super(label, description, metadataType, classifiers, threshold);
70
+ this.searchFields = searchFields;
71
+ }
72
+ }
@@ -164,11 +164,11 @@ export interface MetadataChangeRecommendation {
164
164
  changedBy?: Tag; // Only used by GraphQL consumers
165
165
  changedByTagId: string;
166
166
  impactDescription: string;
167
- metadataChangeId: string;
167
+ metadataChangeId: string | null;
168
168
  status: PendingMetadataChangeStatus;
169
169
  targetId: string;
170
170
  targetName: string;
171
- targetType: 'folder' | 'table';
171
+ targetType: 'folder' | 'function' | 'query' | 'table' | null;
172
172
  }
173
173
 
174
174
  export const FunctionRecommendationQL = `
package/src/signal.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import type { BlockType } from './block-type.js';
1
2
  import type { Field } from './field.js';
2
3
  import type { FieldValue } from './field-value.js';
3
4
  import type { Provider, ProviderApplication } from './provider.js';
@@ -30,6 +31,33 @@ input AvailableSignalsInput {
30
31
  tableId: ID
31
32
  }`;
32
33
 
34
+ export const SetSignalValueInputQL = `
35
+ input SetSignalValueInput {
36
+ dateOverrideExpires: Float
37
+ overrideTriggerBlockTypes: [String!]
38
+ fieldName: String!
39
+ tableId: ID!
40
+ tagId: ID!
41
+ value: String
42
+ }`;
43
+
44
+ export const RemoveSignalOverrideInputQL = `
45
+ input RemoveSignalOverrideInput {
46
+ fieldName: String!
47
+ tableId: ID!
48
+ tagId: ID!
49
+ }`;
50
+
51
+ export const SetSignalValueResultQL = `
52
+ type SetSignalValueResult {
53
+ signal: Signal!
54
+ }`;
55
+
56
+ export const RemoveSignalOverrideResultQL = `
57
+ type RemoveSignalOverrideResult {
58
+ signal: Signal!
59
+ }`;
60
+
33
61
  export interface AvailableSignalGroup {
34
62
  application: ProviderApplication;
35
63
  provider: Provider;
@@ -52,3 +80,26 @@ export interface Signal {
52
80
  field: Field;
53
81
  value?: FieldValue | null;
54
82
  }
83
+
84
+ export interface SetSignalValueInput {
85
+ dateOverrideExpires?: number | null;
86
+ overrideTriggerBlockTypes?: BlockType[] | null;
87
+ fieldName: string;
88
+ tableId: string;
89
+ tagId: string;
90
+ value?: string | null;
91
+ }
92
+
93
+ export interface RemoveSignalOverrideInput {
94
+ fieldName: string;
95
+ tableId: string;
96
+ tagId: string;
97
+ }
98
+
99
+ export interface SetSignalValueResult {
100
+ signal: Signal;
101
+ }
102
+
103
+ export interface RemoveSignalOverrideResult {
104
+ signal: Signal;
105
+ }
package/src/table.ts CHANGED
@@ -10,6 +10,7 @@ export const TableFields = `${BusinessObjectFields}
10
10
  records: [Record]
11
11
  metadata: TableMetadata
12
12
  connectionId: String
13
+ enabled: Boolean
13
14
  requestHash: String`;
14
15
  export const TableQL = `
15
16
  type Table implements Block & BusinessObject {${TableFields}
@@ -18,6 +19,19 @@ export class Table extends BusinessObject {
18
19
  metadata: TableMetadata;
19
20
  records?: Record[];
20
21
  connectionId?: string; // This is a virtual property we provide when the table/records are loaded
22
+ /**
23
+ * Default `true`. Flipped to `false` to pause the table — ingestion writes,
24
+ * field-extraction, Nelly destination awareness, and sync targeting all skip
25
+ * disabled tables. The records and configuration stay intact so the pause
26
+ * is reversible without an archive/restore cycle (parallels `Field.enabled`
27
+ * for signals and `InstalledFunction.enabled` for functions).
28
+ *
29
+ * Nullable in the type signature for backward compatibility with table
30
+ * documents written before this field existed. Read sites should treat
31
+ * `enabled !== false` as the active condition so absent/null/true all mean
32
+ * "enabled" and only an explicit `false` pauses the table.
33
+ */
34
+ enabled?: boolean = true;
21
35
  requestHash?: string; // This is a virtual property, used to bust the Apollo cache for the same tables, with different records
22
36
 
23
37
  constructor(
package/src/types.ts CHANGED
@@ -27,6 +27,14 @@ import {
27
27
  BlockActivityEmptyDetailQL,
28
28
  BlockActivityQL,
29
29
  BlockActivityRenamedDetailQL,
30
+ BlockActivitySignalOverrideChangedDetailQL,
31
+ BlockActivitySignalOverrideExpiredDetailQL,
32
+ BlockActivitySignalOverrideExpiryCancelledDetailQL,
33
+ BlockActivitySignalOverrideExpirySetDetailQL,
34
+ BlockActivitySignalOverrideRemovedDetailQL,
35
+ BlockActivitySignalOverrideTriggerCancelledDetailQL,
36
+ BlockActivitySignalOverrideTriggeredDetailQL,
37
+ BlockActivitySignalOverrideTriggerSetDetailQL,
30
38
  BlockActivityStatusChangedDetailQL,
31
39
  BlockActivityTagDetailQL,
32
40
  BlockActivityTypeQL,
@@ -89,7 +97,7 @@ import {
89
97
  SystemOfRecordQL,
90
98
  } from './field.js';
91
99
  import type { FieldType } from './field-type.js';
92
- import { type FieldValue, FieldValueInputQL, FieldValueQL } from './field-value.js';
100
+ import { type FieldValue, FieldValueInputQL, FieldValueQL, FieldValueSourceQL } from './field-value.js';
93
101
  import type { FieldVariation } from './field-variation.js';
94
102
  import { FolderQL } from './folder.js';
95
103
  import {
@@ -141,8 +149,24 @@ import {
141
149
 
142
150
  export * from './provider.js';
143
151
 
152
+ import {
153
+ ExecuteQueryInputQL,
154
+ ExecuteQueryResultQL,
155
+ QueryResultRecordQL,
156
+ SearchCriterionInputQL,
157
+ } from './execute-query.js';
158
+ import { InstalledQueryQL } from './installed-query.js';
144
159
  import { Primitive } from './primitive.js';
145
160
  import { ProcessingStage } from './processing-stage.js';
161
+ import {
162
+ type QueryMetadata,
163
+ QueryMetadataInputQL,
164
+ QueryMetadataQL,
165
+ type QuerySearchField,
166
+ QuerySearchFieldInputQL,
167
+ QuerySearchFieldQL,
168
+ SearchOperatorQL,
169
+ } from './query-metadata.js';
146
170
  import { ReactionQL } from './reaction.js';
147
171
  import {
148
172
  ChangeRecommendationQL,
@@ -175,7 +199,15 @@ import { type SharingDomain, SharingDomainInputQL, SharingDomainQL } from './sha
175
199
  import type { SharingLevel } from './sharing-level.js';
176
200
  import { type SharingTag, SharingTagInputQL, SharingTagQL } from './sharing-tag.js';
177
201
  import { type SharingTenant, SharingTenantInputQL, SharingTenantQL } from './sharing-tenant.js';
178
- import { AvailableSignalsInputQL, AvailableSignalsResultQL, SignalQL } from './signal.js';
202
+ import {
203
+ AvailableSignalsInputQL,
204
+ AvailableSignalsResultQL,
205
+ RemoveSignalOverrideInputQL,
206
+ RemoveSignalOverrideResultQL,
207
+ SetSignalValueInputQL,
208
+ SetSignalValueResultQL,
209
+ SignalQL,
210
+ } from './signal.js';
179
211
  import { StatementQL } from './statement.js';
180
212
  import {
181
213
  FieldNameSubscriptionQL,
@@ -1157,7 +1189,7 @@ input InstallProviderFunctionInput {
1157
1189
  configuration: [FieldValueInput!]!
1158
1190
  inputs: [FunctionInputInput!]!
1159
1191
  invocationGuidance: String
1160
- sharingTagIds: [String!]
1192
+ sharingTags: [SharingTagInput!]
1161
1193
  }`;
1162
1194
  export interface InstallProviderFunctionInput {
1163
1195
  /**
@@ -1186,7 +1218,97 @@ export interface InstallProviderFunctionInput {
1186
1218
  * the provider's default guidance.
1187
1219
  */
1188
1220
  invocationGuidance?: string;
1189
- sharingTagIds?: string[];
1221
+ sharingTags?: SharingTag[];
1222
+ }
1223
+
1224
+ export const UninstallProviderFunctionInputQL = `
1225
+ input UninstallProviderFunctionInput {
1226
+ functionId: String!
1227
+ confirmed: Boolean
1228
+ }`;
1229
+ export interface UninstallProviderFunctionInput {
1230
+ functionId: string;
1231
+ confirmed?: boolean;
1232
+ }
1233
+
1234
+ export const UninstallProviderFunctionResultQL = `
1235
+ type UninstallProviderFunctionResult {
1236
+ _id: String!
1237
+ archived: Boolean!
1238
+ metadataChange: MetadataChangeMutationResult!
1239
+ }`;
1240
+ export interface UninstallProviderFunctionResult {
1241
+ _id: string;
1242
+ archived: boolean;
1243
+ metadataChange: MetadataChangeMutationResult;
1244
+ }
1245
+
1246
+ export const InstallProviderQueryInputQL = `
1247
+ input InstallProviderQueryInput {
1248
+ application: String!
1249
+ connectionId: String!
1250
+ invocationGuidance: String
1251
+ label: String
1252
+ provider: String!
1253
+ queryId: String
1254
+ queryMetadata: QueryMetadataInput!
1255
+ searchFields: [QuerySearchFieldInput!]!
1256
+ sharingTags: [SharingTagInput!]
1257
+ tableMetadataType: String!
1258
+ }`;
1259
+ export interface InstallProviderQueryInput {
1260
+ application: string;
1261
+ connectionId: string;
1262
+ invocationGuidance?: string;
1263
+ label?: string;
1264
+ provider: string;
1265
+ queryId?: string;
1266
+ queryMetadata: QueryMetadata;
1267
+ searchFields: QuerySearchField[];
1268
+ sharingTags?: SharingTag[];
1269
+ tableMetadataType: string;
1270
+ }
1271
+
1272
+ export const UninstallProviderQueryInputQL = `
1273
+ input UninstallProviderQueryInput {
1274
+ confirmed: Boolean
1275
+ queryId: String!
1276
+ }`;
1277
+ export interface UninstallProviderQueryInput {
1278
+ confirmed?: boolean;
1279
+ queryId: string;
1280
+ }
1281
+
1282
+ export const UninstallProviderQueryResultQL = `
1283
+ type UninstallProviderQueryResult {
1284
+ _id: String!
1285
+ archived: Boolean!
1286
+ metadataChange: MetadataChangeMutationResult!
1287
+ }`;
1288
+ export interface UninstallProviderQueryResult {
1289
+ _id: string;
1290
+ archived: boolean;
1291
+ metadataChange: MetadataChangeMutationResult;
1292
+ }
1293
+
1294
+ export const SetInstalledFunctionEnabledInputQL = `
1295
+ input SetInstalledFunctionEnabledInput {
1296
+ functionId: String!
1297
+ enabled: Boolean!
1298
+ }`;
1299
+ export interface SetInstalledFunctionEnabledInput {
1300
+ functionId: string;
1301
+ enabled: boolean;
1302
+ }
1303
+
1304
+ export const SetInstalledTableEnabledInputQL = `
1305
+ input SetInstalledTableEnabledInput {
1306
+ tableId: String!
1307
+ enabled: Boolean!
1308
+ }`;
1309
+ export interface SetInstalledTableEnabledInput {
1310
+ tableId: string;
1311
+ enabled: boolean;
1190
1312
  }
1191
1313
 
1192
1314
  export const ResolveFunctionInputsInputQL = `
@@ -3204,6 +3326,7 @@ export * from './email-intent.js';
3204
3326
  export * from './entity-entry.js';
3205
3327
  export * from './event.js';
3206
3328
  export * from './event-status.js';
3329
+ export * from './execute-query.js';
3207
3330
  export * from './external-id-link.js';
3208
3331
  export * from './field.js';
3209
3332
  export * from './field-type.js';
@@ -3288,6 +3411,14 @@ ${BlockActivityDueDateChangedDetailQL}
3288
3411
  ${BlockActivityBlockGeneratedDetailQL}
3289
3412
  ${BlockActivityBusinessObjectDetailQL}
3290
3413
  ${BlockActivityEmptyDetailQL}
3414
+ ${BlockActivitySignalOverrideChangedDetailQL}
3415
+ ${BlockActivitySignalOverrideRemovedDetailQL}
3416
+ ${BlockActivitySignalOverrideExpirySetDetailQL}
3417
+ ${BlockActivitySignalOverrideExpiryCancelledDetailQL}
3418
+ ${BlockActivitySignalOverrideExpiredDetailQL}
3419
+ ${BlockActivitySignalOverrideTriggerSetDetailQL}
3420
+ ${BlockActivitySignalOverrideTriggeredDetailQL}
3421
+ ${BlockActivitySignalOverrideTriggerCancelledDetailQL}
3291
3422
  ${BlockActivityDetailQL}
3292
3423
  ${BlockActivityQL}
3293
3424
  ${FindBlockActivitiesInputQL}
@@ -3420,6 +3551,19 @@ ${FunctionMetadataInputQL}
3420
3551
  ${InstalledFunctionQL}
3421
3552
  ${FunctionInvocationQL}
3422
3553
  ${InstallProviderFunctionInputQL}
3554
+ ${UninstallProviderFunctionInputQL}
3555
+ ${UninstallProviderFunctionResultQL}
3556
+ ${SearchOperatorQL}
3557
+ ${QuerySearchFieldQL}
3558
+ ${QuerySearchFieldInputQL}
3559
+ ${QueryMetadataQL}
3560
+ ${QueryMetadataInputQL}
3561
+ ${InstalledQueryQL}
3562
+ ${InstallProviderQueryInputQL}
3563
+ ${UninstallProviderQueryInputQL}
3564
+ ${UninstallProviderQueryResultQL}
3565
+ ${SetInstalledFunctionEnabledInputQL}
3566
+ ${SetInstalledTableEnabledInputQL}
3423
3567
  ${ResolveFunctionInputsInputQL}
3424
3568
  ${ResolveFunctionInputsOutputQL}
3425
3569
  ${PrepareFunctionFormInputQL}
@@ -3484,11 +3628,16 @@ ${FieldQL}
3484
3628
  ${FieldSourceQL}
3485
3629
  ${SystemOfRecordQL}
3486
3630
  ${FieldInputQL}
3631
+ ${FieldValueSourceQL}
3487
3632
  ${FieldValueQL}
3488
3633
  ${FieldValueInputQL}
3489
3634
  ${SignalQL}
3490
3635
  ${AvailableSignalsResultQL}
3491
3636
  ${AvailableSignalsInputQL}
3637
+ ${SetSignalValueInputQL}
3638
+ ${RemoveSignalOverrideInputQL}
3639
+ ${SetSignalValueResultQL}
3640
+ ${RemoveSignalOverrideResultQL}
3492
3641
  ${TableMetadataQL}
3493
3642
  ${RecordQL}
3494
3643
  ${RecordInputQL}
@@ -3658,4 +3807,14 @@ ${RemoveUserMemoryEntryInputQL}
3658
3807
  ${DeleteUserMemoryInputQL}
3659
3808
  ${AiTraceCostMonthQL}
3660
3809
  ${AiTraceCostTenantQL}
3661
- ${FindAiTraceCostsInputQL}`;
3810
+ ${FindAiTraceCostsInputQL}
3811
+ ${InstalledQueryQL}
3812
+ ${SearchOperatorQL}
3813
+ ${QuerySearchFieldQL}
3814
+ ${QuerySearchFieldInputQL}
3815
+ ${QueryMetadataInputQL}
3816
+ ${QueryMetadataQL}
3817
+ ${SearchCriterionInputQL}
3818
+ ${ExecuteQueryInputQL}
3819
+ ${QueryResultRecordQL}
3820
+ ${ExecuteQueryResultQL}`;