@pipe0/base 0.5.16 → 0.5.17
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/CHANGELOG.md +8 -0
- package/dist/index.d.mts +104 -8
- package/dist/index.mjs +27 -27
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1153,6 +1153,7 @@ declare const FieldAnnotationSchema: z.ZodObject<{
|
|
|
1153
1153
|
example_value: z.ZodNullable<z.ZodAny>;
|
|
1154
1154
|
schema: z.ZodNullable<z.ZodAny>;
|
|
1155
1155
|
}, z.core.$strip>>>;
|
|
1156
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1156
1157
|
}, z.core.$strip>;
|
|
1157
1158
|
type FieldAnnotation = z.infer<typeof FieldAnnotationSchema>;
|
|
1158
1159
|
declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1188,8 +1189,21 @@ declare const FieldAnnotationsSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
1188
1189
|
example_value: z.ZodNullable<z.ZodAny>;
|
|
1189
1190
|
schema: z.ZodNullable<z.ZodAny>;
|
|
1190
1191
|
}, z.core.$strip>>>;
|
|
1192
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1191
1193
|
}, z.core.$strip>>;
|
|
1192
1194
|
type FieldAnnotationsType = z.infer<typeof FieldAnnotationsSchema>;
|
|
1195
|
+
/**
|
|
1196
|
+
* THE contract of annotation properties the SYNCHRONOUS route
|
|
1197
|
+
* (`PATCH /sheets/{id}/current-schema/annotations`) may mutate — properties
|
|
1198
|
+
* that can never break schema validity (display metadata only). Structural
|
|
1199
|
+
* properties (type/format/name) must go through sheet effects. Adding a key
|
|
1200
|
+
* here widens a route that bypasses the effects chassis: it requires review
|
|
1201
|
+
* and must keep the key-set contract test in sync.
|
|
1202
|
+
*/
|
|
1203
|
+
declare const SafeFieldAnnotationPatchSchema: z.ZodObject<{
|
|
1204
|
+
/** Set or clear (null) the persisted display order. */order: z.ZodNullable<z.ZodNumber>;
|
|
1205
|
+
}, z.core.$strict>;
|
|
1206
|
+
type SafeFieldAnnotationPatch = z.infer<typeof SafeFieldAnnotationPatchSchema>;
|
|
1193
1207
|
declare const RecordClaimedBySchema: z.ZodObject<{
|
|
1194
1208
|
ref: z.ZodNullable<z.ZodEnum<{
|
|
1195
1209
|
input: "input";
|
|
@@ -23150,6 +23164,7 @@ declare const PipesRequestSchema: z.ZodObject<{
|
|
|
23150
23164
|
example_value: z.ZodNullable<z.ZodAny>;
|
|
23151
23165
|
schema: z.ZodNullable<z.ZodAny>;
|
|
23152
23166
|
}, z.core.$strip>>>;
|
|
23167
|
+
order: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23153
23168
|
}, z.core.$strip>>>;
|
|
23154
23169
|
pipes: z.ZodArray<z.ZodDiscriminatedUnion<readonly [z.ZodObject<{
|
|
23155
23170
|
pipe_id: z.ZodLiteral<"prompt:run@1">;
|
|
@@ -59213,6 +59228,7 @@ declare const SearchResponseSchema: z$1.ZodObject<{
|
|
|
59213
59228
|
example_value: z$1.ZodNullable<z$1.ZodAny>;
|
|
59214
59229
|
schema: z$1.ZodNullable<z$1.ZodAny>;
|
|
59215
59230
|
}, z$1.core.$strip>>>;
|
|
59231
|
+
order: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
|
|
59216
59232
|
}, z$1.core.$strip>>>;
|
|
59217
59233
|
}, z$1.core.$strip>;
|
|
59218
59234
|
type SearchRequestType = z$1.infer<typeof SearchRequestSchema>;
|
|
@@ -63791,7 +63807,7 @@ declare function getStartingCostPerSearchesProvider(search_id: SearchesId): {
|
|
|
63791
63807
|
* HTTP endpoints and agent tools (e.g. `create_sheet`, `name_workspace`,
|
|
63792
63808
|
* `PATCH /v1/sheets/{id}`) and must NOT be added here.
|
|
63793
63809
|
*/
|
|
63794
|
-
declare const SHEET_EFFECT_IDS: readonly ["rows:dedupe@1", "rows:duplicate@1", "rows:enrich@1", "rows:adopt@1", "rows:add@1", "rows:import@1", "row:update@1", "rows:remove@1", "rows:removeempty@1", "rows:copy_to_sheet@1", "rows:filter:prompt@1", "pipe:add@1", "pipe:update@1", "pipe:remove@1", "fields:remove@1", "fields:patch@1", "fields:duplicate@1", "fields:add@1", "fields:deletesparse:input@1", "env:change@1", "timetravel:create@1", "timetravel:travel@1", "sheet:export@1", "search:run@1", "sheet:reset@1"];
|
|
63810
|
+
declare const SHEET_EFFECT_IDS: readonly ["rows:dedupe@1", "rows:duplicate@1", "rows:enrich@1", "rows:adopt@1", "rows:add@1", "rows:import@1", "row:update@1", "rows:remove@1", "rows:removeempty@1", "rows:copy_to_sheet@1", "rows:filter:prompt@1", "pipe:add@1", "pipe:update@1", "pipe:remove@1", "fields:remove@1", "fields:patch@1", "fields:duplicate@1", "fields:add@1", "fields:order:reset@1", "fields:deletesparse:input@1", "env:change@1", "timetravel:create@1", "timetravel:travel@1", "sheet:export@1", "search:run@1", "sheet:reset@1"];
|
|
63795
63811
|
declare const SheetEffectIdSchema: z.ZodEnum<{
|
|
63796
63812
|
"rows:dedupe@1": "rows:dedupe@1";
|
|
63797
63813
|
"rows:duplicate@1": "rows:duplicate@1";
|
|
@@ -63811,6 +63827,7 @@ declare const SheetEffectIdSchema: z.ZodEnum<{
|
|
|
63811
63827
|
"fields:patch@1": "fields:patch@1";
|
|
63812
63828
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
63813
63829
|
"fields:add@1": "fields:add@1";
|
|
63830
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
63814
63831
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
63815
63832
|
"env:change@1": "env:change@1";
|
|
63816
63833
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -64110,6 +64127,11 @@ declare const FieldsAddPayloadSchema1: z.ZodObject<{
|
|
|
64110
64127
|
percent: "percent";
|
|
64111
64128
|
}>>>;
|
|
64112
64129
|
label: z.ZodOptional<z.ZodString>;
|
|
64130
|
+
insert_relative_to: z.ZodOptional<z.ZodString>;
|
|
64131
|
+
insert_position: z.ZodOptional<z.ZodEnum<{
|
|
64132
|
+
before: "before";
|
|
64133
|
+
after: "after";
|
|
64134
|
+
}>>;
|
|
64113
64135
|
}, z.core.$strip>;
|
|
64114
64136
|
}, z.core.$strip>;
|
|
64115
64137
|
//#endregion
|
|
@@ -64157,6 +64179,21 @@ declare const FieldsDuplicatePayloadSchema1: z.ZodObject<{
|
|
|
64157
64179
|
}, z.core.$strip>;
|
|
64158
64180
|
}, z.core.$strip>;
|
|
64159
64181
|
//#endregion
|
|
64182
|
+
//#region src/sheet-effects/catalog/entries/fields-order-reset-1.d.ts
|
|
64183
|
+
declare const FieldsOrderResetPayloadSchema1: z.ZodObject<{
|
|
64184
|
+
effect_id: z.ZodLiteral<"fields:order:reset@1">;
|
|
64185
|
+
connector: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
64186
|
+
strategy: z.ZodDefault<z.ZodEnum<{
|
|
64187
|
+
first: "first";
|
|
64188
|
+
}>>;
|
|
64189
|
+
connections: z.ZodArray<z.ZodObject<{
|
|
64190
|
+
type: z.ZodLiteral<"vault">;
|
|
64191
|
+
connection: z.ZodString;
|
|
64192
|
+
}, z.core.$strip>>;
|
|
64193
|
+
}, z.core.$strip>>>;
|
|
64194
|
+
config: z.ZodObject<{}, z.core.$strip>;
|
|
64195
|
+
}, z.core.$strip>;
|
|
64196
|
+
//#endregion
|
|
64160
64197
|
//#region src/sheet-effects/catalog/entries/fields-patch-1.d.ts
|
|
64161
64198
|
declare const FieldsPatchPayloadSchema1: z.ZodObject<{
|
|
64162
64199
|
effect_id: z.ZodLiteral<"fields:patch@1">;
|
|
@@ -101947,6 +101984,7 @@ declare const RecordActionDetailSchema: z.ZodObject<{
|
|
|
101947
101984
|
"fields:patch@1": "fields:patch@1";
|
|
101948
101985
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
101949
101986
|
"fields:add@1": "fields:add@1";
|
|
101987
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
101950
101988
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
101951
101989
|
"env:change@1": "env:change@1";
|
|
101952
101990
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -101998,6 +102036,7 @@ declare const UpdatedActionDetailSchema: z.ZodObject<{
|
|
|
101998
102036
|
"fields:patch@1": "fields:patch@1";
|
|
101999
102037
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102000
102038
|
"fields:add@1": "fields:add@1";
|
|
102039
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102001
102040
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102002
102041
|
"env:change@1": "env:change@1";
|
|
102003
102042
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102040,6 +102079,7 @@ declare const RecordDiffEntrySchema: z.ZodObject<{
|
|
|
102040
102079
|
"fields:patch@1": "fields:patch@1";
|
|
102041
102080
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102042
102081
|
"fields:add@1": "fields:add@1";
|
|
102082
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102043
102083
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102044
102084
|
"env:change@1": "env:change@1";
|
|
102045
102085
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102077,6 +102117,7 @@ declare const RecordDiffEntrySchema: z.ZodObject<{
|
|
|
102077
102117
|
"fields:patch@1": "fields:patch@1";
|
|
102078
102118
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102079
102119
|
"fields:add@1": "fields:add@1";
|
|
102120
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102080
102121
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102081
102122
|
"env:change@1": "env:change@1";
|
|
102082
102123
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102117,6 +102158,7 @@ declare const RecordDiffEntrySchema: z.ZodObject<{
|
|
|
102117
102158
|
"fields:patch@1": "fields:patch@1";
|
|
102118
102159
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102119
102160
|
"fields:add@1": "fields:add@1";
|
|
102161
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102120
102162
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102121
102163
|
"env:change@1": "env:change@1";
|
|
102122
102164
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102163,6 +102205,7 @@ declare const SheetEffectsDiffSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
102163
102205
|
"fields:patch@1": "fields:patch@1";
|
|
102164
102206
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102165
102207
|
"fields:add@1": "fields:add@1";
|
|
102208
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102166
102209
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102167
102210
|
"env:change@1": "env:change@1";
|
|
102168
102211
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102200,6 +102243,7 @@ declare const SheetEffectsDiffSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
102200
102243
|
"fields:patch@1": "fields:patch@1";
|
|
102201
102244
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102202
102245
|
"fields:add@1": "fields:add@1";
|
|
102246
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102203
102247
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102204
102248
|
"env:change@1": "env:change@1";
|
|
102205
102249
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102240,6 +102284,7 @@ declare const SheetEffectsDiffSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
102240
102284
|
"fields:patch@1": "fields:patch@1";
|
|
102241
102285
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102242
102286
|
"fields:add@1": "fields:add@1";
|
|
102287
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102243
102288
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102244
102289
|
"env:change@1": "env:change@1";
|
|
102245
102290
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102281,6 +102326,7 @@ declare const SheetEffectStepSummarySchema: z.ZodObject<{
|
|
|
102281
102326
|
"fields:patch@1": "fields:patch@1";
|
|
102282
102327
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102283
102328
|
"fields:add@1": "fields:add@1";
|
|
102329
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102284
102330
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102285
102331
|
"env:change@1": "env:change@1";
|
|
102286
102332
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102361,6 +102407,7 @@ type SheetEffectPayloadSchemas = {
|
|
|
102361
102407
|
"fields:patch@1": typeof FieldsPatchPayloadSchema1;
|
|
102362
102408
|
"fields:duplicate@1": typeof FieldsDuplicatePayloadSchema1;
|
|
102363
102409
|
"fields:add@1": typeof FieldsAddPayloadSchema1;
|
|
102410
|
+
"fields:order:reset@1": typeof FieldsOrderResetPayloadSchema1;
|
|
102364
102411
|
"fields:deletesparse:input@1": typeof FieldsDeletesparseInputPayloadSchema1;
|
|
102365
102412
|
"env:change@1": typeof EnvChangePayloadSchema1;
|
|
102366
102413
|
"timetravel:create@1": typeof TimetravelCreatePayloadSchema1;
|
|
@@ -102443,6 +102490,7 @@ declare const EffectsResponseSchema: z$1.ZodObject<{
|
|
|
102443
102490
|
"fields:patch@1": "fields:patch@1";
|
|
102444
102491
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102445
102492
|
"fields:add@1": "fields:add@1";
|
|
102493
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102446
102494
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102447
102495
|
"env:change@1": "env:change@1";
|
|
102448
102496
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102494,6 +102542,7 @@ declare const EffectsResponseSchema: z$1.ZodObject<{
|
|
|
102494
102542
|
"fields:patch@1": "fields:patch@1";
|
|
102495
102543
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102496
102544
|
"fields:add@1": "fields:add@1";
|
|
102545
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102497
102546
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102498
102547
|
"env:change@1": "env:change@1";
|
|
102499
102548
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102531,6 +102580,7 @@ declare const EffectsResponseSchema: z$1.ZodObject<{
|
|
|
102531
102580
|
"fields:patch@1": "fields:patch@1";
|
|
102532
102581
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102533
102582
|
"fields:add@1": "fields:add@1";
|
|
102583
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102534
102584
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102535
102585
|
"env:change@1": "env:change@1";
|
|
102536
102586
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102571,6 +102621,7 @@ declare const EffectsResponseSchema: z$1.ZodObject<{
|
|
|
102571
102621
|
"fields:patch@1": "fields:patch@1";
|
|
102572
102622
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102573
102623
|
"fields:add@1": "fields:add@1";
|
|
102624
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102574
102625
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102575
102626
|
"env:change@1": "env:change@1";
|
|
102576
102627
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102615,6 +102666,7 @@ declare const EffectsValidateStepSchema: z$1.ZodObject<{
|
|
|
102615
102666
|
"fields:patch@1": "fields:patch@1";
|
|
102616
102667
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102617
102668
|
"fields:add@1": "fields:add@1";
|
|
102669
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102618
102670
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102619
102671
|
"env:change@1": "env:change@1";
|
|
102620
102672
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102650,6 +102702,7 @@ declare const EffectsValidateResponseSchema: z$1.ZodObject<{
|
|
|
102650
102702
|
"fields:patch@1": "fields:patch@1";
|
|
102651
102703
|
"fields:duplicate@1": "fields:duplicate@1";
|
|
102652
102704
|
"fields:add@1": "fields:add@1";
|
|
102705
|
+
"fields:order:reset@1": "fields:order:reset@1";
|
|
102653
102706
|
"fields:deletesparse:input@1": "fields:deletesparse:input@1";
|
|
102654
102707
|
"env:change@1": "env:change@1";
|
|
102655
102708
|
"timetravel:create@1": "timetravel:create@1";
|
|
@@ -102693,7 +102746,19 @@ declare class FieldAnnotations {
|
|
|
102693
102746
|
inferCatalogFields?: boolean;
|
|
102694
102747
|
addIdColumn?: boolean;
|
|
102695
102748
|
}): FieldAnnotations;
|
|
102696
|
-
merge(source: FieldAnnotationsType | FieldAnnotations, overwrite?: boolean
|
|
102749
|
+
merge(source: FieldAnnotationsType | FieldAnnotations, overwrite?: boolean, {
|
|
102750
|
+
appendOrders
|
|
102751
|
+
}?: {
|
|
102752
|
+
/**
|
|
102753
|
+
* Shift the source's `order` stamps past this destination's maximum so
|
|
102754
|
+
* incoming columns APPEND instead of interleaving user-arranged ones.
|
|
102755
|
+
* For IMPORT-SHAPED merges only (fresh `fromInput` stamps) — never for
|
|
102756
|
+
* sources whose orders live in the destination's own number space
|
|
102757
|
+
* (kept-fields re-annotation, validator re-persist), which it would
|
|
102758
|
+
* corrupt.
|
|
102759
|
+
*/
|
|
102760
|
+
appendOrders?: boolean;
|
|
102761
|
+
}): FieldAnnotations;
|
|
102697
102762
|
deleteKey(fieldName: string): FieldAnnotations;
|
|
102698
102763
|
}
|
|
102699
102764
|
//#endregion
|
|
@@ -108608,11 +108673,6 @@ declare const CladoPersonMatchV2Schema: z.ZodObject<{
|
|
|
108608
108673
|
}, z.core.$strip>;
|
|
108609
108674
|
type CladoPersonMatchV2 = z.infer<typeof CladoPersonMatchV2Schema>;
|
|
108610
108675
|
//#endregion
|
|
108611
|
-
//#region src/fields/json-meta/fields/hubspot-matches.d.ts
|
|
108612
|
-
declare const CONTACT_STANDARD_PROPERTIES: readonly ["email", "firstname", "lastname", "phone", "mobilephone", "jobtitle", "company", "lifecyclestage", "hs_lead_status", "hubspot_owner_id", "city", "country", "website", "createdate", "lastmodifieddate"];
|
|
108613
|
-
declare const COMPANY_STANDARD_PROPERTIES: readonly ["name", "domain", "website", "industry", "numberofemployees", "annualrevenue", "phone", "city", "country", "lifecyclestage", "hubspot_owner_id", "description", "createdate", "hs_lastmodifieddate"];
|
|
108614
|
-
declare const DEAL_STANDARD_PROPERTIES: readonly ["dealname", "amount", "pipeline", "dealstage", "closedate", "hs_is_closed", "hs_is_closed_won", "dealtype", "hubspot_owner_id", "createdate", "hs_lastmodifieddate"];
|
|
108615
|
-
//#endregion
|
|
108616
108676
|
//#region src/fields/json-meta/fields/crustdata-company-match-v2.d.ts
|
|
108617
108677
|
declare const CrustdataCompanyMatchV2Schema: z.ZodObject<{
|
|
108618
108678
|
crustdata_company_id: z.ZodNullable<z.ZodNumber>;
|
|
@@ -108680,6 +108740,11 @@ declare const CrustdataCompanyMatchV2Schema: z.ZodObject<{
|
|
|
108680
108740
|
type CrustdataCompanyMatchV2Field = z.infer<typeof CrustdataCompanyMatchV2Schema>;
|
|
108681
108741
|
declare const crustdataCompanyMatchV2ExampleValue: CrustdataCompanyMatchV2Field;
|
|
108682
108742
|
//#endregion
|
|
108743
|
+
//#region src/fields/json-meta/fields/hubspot-matches.d.ts
|
|
108744
|
+
declare const CONTACT_STANDARD_PROPERTIES: readonly ["email", "firstname", "lastname", "phone", "mobilephone", "jobtitle", "company", "lifecyclestage", "hs_lead_status", "hubspot_owner_id", "city", "country", "website", "createdate", "lastmodifieddate"];
|
|
108745
|
+
declare const COMPANY_STANDARD_PROPERTIES: readonly ["name", "domain", "website", "industry", "numberofemployees", "annualrevenue", "phone", "city", "country", "lifecyclestage", "hubspot_owner_id", "description", "createdate", "hs_lastmodifieddate"];
|
|
108746
|
+
declare const DEAL_STANDARD_PROPERTIES: readonly ["dealname", "amount", "pipeline", "dealstage", "closedate", "hs_is_closed", "hs_is_closed_won", "dealtype", "hubspot_owner_id", "createdate", "hs_lastmodifieddate"];
|
|
108747
|
+
//#endregion
|
|
108683
108748
|
//#region src/fields/json-meta/fields/post_match.d.ts
|
|
108684
108749
|
declare const B2BPostMatchSchema: z.ZodObject<{
|
|
108685
108750
|
share_urn: z.ZodNullable<z.ZodString>;
|
|
@@ -114141,6 +114206,37 @@ declare function catalogInput(field: NamedFieldEntry, config: {
|
|
|
114141
114206
|
format: "profile_url" | "int" | "date" | "email" | "url" | "address_line_1" | "zip_code" | "phone" | "website_url" | "datetime" | "json_object" | "json_list" | "json_list_string" | "currency" | "markdown" | "text" | "decimal" | "percent" | null;
|
|
114142
114207
|
};
|
|
114143
114208
|
//#endregion
|
|
114209
|
+
//#region src/pipes/pipes-validator/derived-order.d.ts
|
|
114210
|
+
/** Group key of the input-column group; pipe groups use the pipe's config hash. */
|
|
114211
|
+
declare const INPUT_GROUP_KEY = "input";
|
|
114212
|
+
type DerivedGroupedFieldOrder = {
|
|
114213
|
+
/** Group keys in display order ("input" always first). */groupOrder: string[]; /** Per-group resolved field names in display order. */
|
|
114214
|
+
fieldOrder: Record<string, string[]>;
|
|
114215
|
+
};
|
|
114216
|
+
/**
|
|
114217
|
+
* The single definition of column display order, shared by the dash renderer
|
|
114218
|
+
* and the schema-evolution placement math so they can never disagree.
|
|
114219
|
+
*
|
|
114220
|
+
* Groups render contiguously: input first, then pipe groups by the MIN
|
|
114221
|
+
* persisted annotation order among their member fields (topological
|
|
114222
|
+
* `pipe_index` when none — so never-dragged pipes append in dependency
|
|
114223
|
+
* order). Group position must read RAW annotation orders only, never
|
|
114224
|
+
* `def.order`: its pipe-hint fallback (0, 1, 2, …) would put every freshly
|
|
114225
|
+
* added pipe group in front of user-dragged ones.
|
|
114226
|
+
*
|
|
114227
|
+
* Fields within a group: persisted annotation order first; ties (both
|
|
114228
|
+
* absent/equal) fall back to the legacy comparator — primary output first,
|
|
114229
|
+
* then the `def.order` hint (catalog guidance / pipe-declared), then name —
|
|
114230
|
+
* so sheets without persisted orders render exactly as before.
|
|
114231
|
+
*/
|
|
114232
|
+
declare function deriveGroupedFieldOrder({
|
|
114233
|
+
fieldDefinitions,
|
|
114234
|
+
fieldAnnotations
|
|
114235
|
+
}: {
|
|
114236
|
+
fieldDefinitions: Record<string, PipesFieldDefinition>;
|
|
114237
|
+
fieldAnnotations?: FieldAnnotationsType;
|
|
114238
|
+
}): DerivedGroupedFieldOrder;
|
|
114239
|
+
//#endregion
|
|
114144
114240
|
//#region src/pipes/pipes-validator/get-output-field-info-from-dev.d.ts
|
|
114145
114241
|
declare function getOutputFieldInfoFromDef(resolvedName: string, def: PipesFieldDefinition, context: ValidationContext): {
|
|
114146
114242
|
isPrimaryOutput: boolean;
|
|
@@ -119755,4 +119851,4 @@ declare const ProfileFieldSchema: z.ZodObject<{
|
|
|
119755
119851
|
}, z.core.$strip>;
|
|
119756
119852
|
type ProfielField = z.infer<typeof ProfileFieldSchema>;
|
|
119757
119853
|
//#endregion
|
|
119758
|
-
export { AI_MODELS, AI_MODEL_CATALOG, AI_MODEL_RAW_USD, ATTIO_APP_SCOPES, ATTIO_ATTRIBUTE_TYPE_TABLE, ATTIO_COMPANIES_STANDARD_PROPERTIES, ATTIO_DEALS_STANDARD_PROPERTIES, ATTIO_PEOPLE_STANDARD_PROPERTIES, ATTIO_SCOPES_ACTIVITY_READ, ATTIO_SCOPES_LISTS_READ, ATTIO_SCOPES_MEMBERS_READ, ATTIO_SCOPES_RECORDS_READ, ATTIO_SCOPES_RECORDS_WRITE, ATTIO_SCOPES_SQL, ATTIO_STANDARD_PROPERTIES_BY_OBJECT, type AgentContext, type AgentContextCtx, type AgentQueryRunner, type AiModelId, type AnalysisResult, AnyPipeConstructor, AnyReportEffectConstructor, AnySheetEffectConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, AttioAttributeRef, AttioAttributeTypeRule, AttioConditionOperator, AttioCoreObject, AttioFlattenRule, AttioStandardProperty, type AutocompleteOption, type AutocompleteSourceKey, type B2BPostMatchField, B2BPostMatchSchema, BUCKET_TYPES, BaseScheetSchemaDto, BillableOperation, BillableOperationDef, BillableOperationEstimate, BillableOperations, BillingMode, BooleanMeta, BucketClaimConfig, BucketClaimConfigSchema, BucketConfig, BucketCounterConfig, BucketCounterConfigSchema, BucketCreationSettings, BucketEntryField, BucketEntryFields, BucketEventCounterConfig, BucketEventCounterConfigSchema, BucketFieldDef, BucketFieldDefSchema, BucketFieldType, BucketFieldTypeSchema, BucketRequirement, BucketSchema, BucketSchemaSchema, BucketType, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, CALENDAR_EVENT_TYPES, CALLOUT_VARIANTS, CATALOG_SEARCH_WEIGHTS, CATEGORY_META, COMPANY_STANDARD_PROPERTIES, CONTACT_STANDARD_PROPERTIES, CREDIT_USD_VALUE, CURRENT_BUCKET_TYPE_VERSION, type CalendarEventMatch, type CalendarEventType, CalloutVariant, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CatalogSearchFields, type CatalogSearchTarget, type CladoPersonMatch, type CladoPersonMatchV2, ConciseFieldValue, ConciseFieldValueSchema, Condition, ConditionBlock, ConditionBlockMeta, ConditionBlockSchema, ConditionEvaluationError, ConditionFieldNotFoundError, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CostEstimateContext, type CrustdataCompanyMatchV2Field, CrustdataCompanyMatchV2Schema, CursorPaginationMeta, DEAL_STANDARD_PROPERTIES, DEFAULT_MODEL_COPY_WRITING, DEFAULT_MODEL_FAST_REASONING, DEFAULT_MODEL_REASONING, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedInputFields, type DetectPersonProfileSignalsOptions, Effect, EffectAllSelectionSchema, EffectRowsSelectionSchema, EffectSelectionDto, EffectSelectionSchema, EffectWindowSelectionSchema, EffectsRequest, EffectsRequestSchema, EffectsResponse, EffectsResponseSchema, EffectsRunStatus, EffectsRunStatusSchema, EffectsValidateRequestSchema, EffectsValidateResponseSchema, EffectsValidateStepSchema, EmailValidationStatus, type EnabledIf, type EnabledResult, type EntryAccessLevel, EvaluableField, EvaluableFields, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FORMULA_RESULT_TYPES, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, FieldContextCapableMeta, type FieldContextClient, type FieldContextSheetField, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldSelectMeta, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, FormCustomization, type FormMask, type FormMaskCatalog, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, type FormulaResultType, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupMap, GroupOverride, HIGH_VOLUME_PRICING_MIN_CREDITS, type HighVolumeEligibleOperation, HighVolumeLevel, type HighVolumeTier, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, LazyResolveContext, LooseObjectMeta, type LumaEventGuestMatch, MANAGED_TOKEN_MARGIN, MANUAL_DEFAULT, MAX_SIGNALS_PER_SCAN, ManagedCredits, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, ObjectHasher, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OrgAccessLevel, type OutputDecl, OutputFieldMeta, PIPE0_DEFAULT_CONNECTION_PUBLIC_ID, PIPE_IDS, PLAYBOOK_IDS, PaginationType, PaginationTypeSchema, ParsedSheetChain, PathMap, PathOverride, type PersonProfileField, PersonProfileFieldSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeFitInput, PipeFitOutputField, PipeFitResult, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, PlaybookDef, PlaybookId, PlaybookStep, PlaybookStepKind, PlaybookVariant, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, ProcessedSheetEffectPayloadSchema, type ProfielField, PromptMeta, PropertyListMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, REJOIN_GAP_DAYS, REPORT_EFFECT_IDS, REPORT_ROW_CAP, REPORT_TAGS, RESERVED_FIELD_NAMES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RUN_STATUS_OPTIONS, RangeMeta, RecordActionDetail, RecordActionDetailSchema, RecordClaimedBy, RecordClaimedBySchema, RecordDiffEntry, RecordDiffEntrySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, ReportChartData, ReportChartDataSchema, ReportData, ReportDataSchema, ReportDataValue, ReportDataValueSchema, ReportEffect, ReportEffectCatalog, ReportEffectDef, ReportEffectId, ReportEffectIdSchema, ReportEffectLifeCycle, ReportEffectPayload, ReportEffectPayloadCatalog, ReportEffectPayloadInput, ReportEffectPayloadMap, ReportEffectPayloadSchema, ReportEffectRunPayload, ReportEffectStepSummary, ReportEffectStepSummarySchema, ReportEffectsOperationResult, ReportEffectsRequest, ReportEffectsRequestSchema, ReportEffectsResponse, ReportEffectsResponseSchema, ReportEffectsValidationResult, ReportEffectsValidationStep, ReportMetricData, ReportMetricDataSchema, type ReportParseIssue, type ReportParseResult, type ReportSegment, ReportStatsData, ReportStatsDataSchema, ReportTableColumn, ReportTableData, ReportTableDataSchema, ReportTagName, ReportUpdateComputeResult, type ReportValidationIssue, type ReportValidationResult, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, ResultColumn, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, RunStatus, RunStatusSchema, SALESFORCE_ACCOUNT_STANDARD_PROPERTIES, SALESFORCE_CONTACT_STANDARD_PROPERTIES, SALESFORCE_FIELD_TYPE_TABLE, SALESFORCE_LEAD_STANDARD_PROPERTIES, SALESFORCE_OPPORTUNITY_STANDARD_PROPERTIES, SALESFORCE_PERSON_STANDARD_PROPERTIES, SALESFORCE_STANDARD_PROPERTIES_BY_OBJECT, SALESFORCE_USER_STANDARD_PROPERTIES, SCHEDULED_DEFAULT, SEARCHES_IDS, SEARCH_IDS, SENIORITY_LEVELS, SHEET_EFFECT_IDS, SIGNAL_CATEGORIES, SIGNAL_LABELS, SIGNAL_SCOPES, SIGNAL_SUBCATEGORIES, SIGNAL_TAXONOMY, SIGNAL_TYPES, SIGNAL_WINDOW_DAYS, SalesforceApiError, SalesforceConditionOperator, SalesforceCoreObject, SalesforceDuplicateInfo, SalesforceErrorClass, SalesforceFieldTypeRule, SalesforceStandardProperty, SalesforceValueEncoding, SchemaEvolution, SchemaInputs, SchemaRowMigration, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadInputMeta, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMap, SectionOverride, SelectMeta, type SeniorityLevel, SheetEffect, SheetEffectCatalog, SheetEffectCatalogEntry, SheetEffectCatalogTableData, SheetEffectCategory, SheetEffectCategoryEntry, SheetEffectDef, SheetEffectId, SheetEffectIdSchema, SheetEffectLifeCycle, SheetEffectLockScope, SheetEffectLockingMode, SheetEffectMetaEntryWithId, SheetEffectPayload, SheetEffectPayloadCatalog, SheetEffectPayloadInput, SheetEffectPayloadMap, SheetEffectPayloadSchema, SheetEffectRequestPayloadMap, type SheetEffectSelectionMode, SheetEffectStepSummary, SheetEffectStepSummarySchema, SheetEffectStepValidation, SheetEffectValidationError, SheetEffectsCounts, SheetEffectsCountsSchema, SheetEffectsDiff, SheetEffectsDiffSchema, SheetEffectsOperationResult, SheetEffectsValidationResult, type Signal, type SignalCategory, type SignalScope, type SignalSubcategory, type SignalType, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TAG_ALLOWED_ATTRS, TAG_DATA_KIND, TOKEN_BLOCK_SIZE_INPUT, TOKEN_BLOCK_SIZE_OUTPUT, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, type Tenure, TextMeta, TextareaMeta, Tier, TokenBlockAccumulator, type TransformIntoResponseConfig, TypedFieldsSelectMeta, UpdatedActionDetail, UpdatedActionDetailSchema, type UserConnection, ValidatedSheetEffects, ValidationContext, ValueCondition, ValueConditionBlock, ValueConditionBlockSchema, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, analyzePipeFit, and, any, applyDataPatch, applyReportEdits, applyReportUpdate, assertSoqlIdentifier, assertUniqueBillableOperations, autocomplete, b2bPostMatchExample, bucketConfigSchemaFor, bucketSchemaFieldNames, bucketSchemasEqual, bucketSlugValue, buildAiModelTokenBillableOperations, buildAttioProjectionSet, buildCatalogSearchTarget, buildDependencyGraph, buildInputRequirementFromTemplates, buildKeysetPredicate, buildResultColumns, buildSalesforceFetchSet, buildSignalId, buildSoqlInList, buildTokenNote, catalogInput, chunkBySize, classifyEffectChainKind, classifySalesforceError, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSearchContextSelectFields, collectSecretReferencesFromTemplates, collectSheetEffectContextSelectFields, compilePattern, computeTenure, configDefaults, creditsPerBlock, crustdataCompanyMatchV2ExampleValue, decodeBucketContract, dedupeColumnNames, defaultBucketConfig, describeRequirement, detectPersonProfileSignals, domainToWebsiteVariants, encodeBucketContract, entityLogoFavicon, entityLogoProfessionalProfileUrl, escapeSoqlLikeValue, escapeSoqlString, estimateGuardCredits, evaluateConditionBlock, explainEffectIds, extractDuplicateInfo, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, findMissingAttioScopes, formatSoqlBooleanValue, formatSoqlDateValue, formatSoqlNumberValue, getAgentAllowedEffectIds, getAgentAllowedReportEffectIds, getAiModelConnectionRequirements, getAiModelProviders, getAiModelTokenBillingKeys, getAiModelTokenCredits, getAllAiModelProviders, getAttioAttributeTypeRule, getBaseEffectName, getBasePipeName, getBaseSheetEffectName, getCatalogFieldOrder, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getEffectConfigHash, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialSheetEffectTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getLowestSheetEffectCreditAmount, getOutputFieldInfoFromDef, getPipeAccessLevel, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeFormMask, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeSearchTarget, getPipeVersion, getPlaybookAccessLevel, getPlaybookEntry, getPlaybooksForPrimitive, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getReportEffectClass, getReportEffectEntry, getReportEffectInstance, getReportEffectPayloadSchema, getSalesforceFieldTypeRule, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchAccessLevel, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchFormMask, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchSearchTarget, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesSearchTarget, getSearchesTableDataAggregates, getSearchesVersion, getSeniorityEmojiFromTitle, getSeniorityLevelFromTitle, getSheetEffectCategoryEntries, getSheetEffectCategoryEntry, getSheetEffectClass, getSheetEffectConfigHash, getSheetEffectDefaultPayload, getSheetEffectEntry, getSheetEffectFormMask, getSheetEffectInstance, getSheetEffectPayloadFormConfig, getSheetEffectPayloadSchema, getSheetEffectSearchTarget, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getTier, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isAgentAllowedEffect, isAgentAllowedReportEffect, isCatalogField, isEmptyValue, isEntryAccessible, isFieldName, isHighVolumeEligible, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isReservedFieldName, isSearchAllowed, isSearchesAllowed, isSoqlDateLiteral, isTokenBilledOperations, isValidSalesforceId, isValidSoqlIdentifier, joinConnectionString, listHighVolumeEligibleOperations, listTiers, managedDefaultCreditOf, mappedBucketFieldNames, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeFormConfig, mergeWidgets, noConnectorInput, normalizeColumnName, normalizeDomain, optional, optionalConnectorInput, or, orgAccessLevelFromFlags, outputFields, parseAttributeRef, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRelaxedObject, parseReportSegments, parseRichText, parseSalesforceErrorBody, parseSheetChainDetailed, perUnit, personProfileMatchExample1, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAliasableFieldsSelectInput, pipesAsyncIncludeExcludeSelectInput, pipesConditionInput, pipesContextSelectInput, pipesDateRangeInput, pipesDestinationFieldConfig, pipesFieldSelectInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesLLMSelectInput, pipesLooseObjectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesPropertyListInput, pipesProviderInput, pipesRangeInput, pipesRowConditionInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, pipesTypedFieldsSelectInput, placeholder, playbookCatalog, processInputObjects, projectOptionsDef, projectScopedSheetOptionsDef, providedCreationName, providedCreationPolicy, providerCatalog, rateLimitRatioFallingProgression, renameFieldInPipePayloads, renderAttioOperatorMatrix, renderLiquidTemplate, renderLiquidTemplateSync, renderSalesforceOperatorMatrix, reportEffectCatalog, reportEffectClassCatalog, reportEffectPayloadSchemaCatalog, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, resolveFormMask, resolveMappingEntry, roundrobinBucketSlug, roundrobinFilterKey, runReportEffectsValidation, runSheetEffectsValidation, runStatusesToQueueConfig, salesforceRecordUrl, schemaEvolutionFrom, scoreCatalogSearch, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesConditionInput, searchesContextSelectInput, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalConnectorInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesPropertyListInput, searchesRangeInput, searchesRequiredConnectorInput, searchesSelectInput, searchesTextInput, searchesTextareaField, seniorityLevelSchema, sheetColumnsOptionsDef, sheetEffectCatalog, sheetEffectCategoryCatalog, sheetEffectClassCatalog, sheetEffectPayloadSchemaCatalog, sheetEffectSnippetCatalog, sheetEffectsConditionInput, sheetEffectsContextSelectInput, sheetEffectsFieldsSelectInput, sheetEffectsIntInput, sheetEffectsLLMSelectInput, sheetEffectsMultiSelectInput, sheetEffectsNoConnectorInput, sheetEffectsOptionalBooleanInput, sheetEffectsOptionalConnectorInput, sheetEffectsOptionalIntInput, sheetEffectsPayloadRegistry, sheetEffectsRequiredConnectorInput, sheetEffectsSearchPayloadInput, sheetEffectsSelectInput, sheetEffectsSelectionInput, sheetEffectsTextInput, sheetEffectsTextareaInput, sheetOptionsDef, soqlStringLiteral, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, sortSheetEffectCatalogByBaseEffect, splitConnectionString, staticAutocomplete, staticOptions, stringify, stripStaticWidgets, summarizeEffectRun, summarizeReportEffectRun, tagPrimaryCurrentEducation, tagPrimaryCurrentEmployment, tagStaticWidgets, testPrint, tierAtOrBelow, tokenEstimate, tokenizeCatalogQuery, transformIntoResponse, tryDecodeBucketContract, tryParseRelaxedObject, validatePipesOrError, validateReportChainAgainstVersion, validateReportMarkdown, validateSearches, validateSheetEffectsOrError, validationErrorMessages, websiteToDomain };
|
|
119854
|
+
export { AI_MODELS, AI_MODEL_CATALOG, AI_MODEL_RAW_USD, ATTIO_APP_SCOPES, ATTIO_ATTRIBUTE_TYPE_TABLE, ATTIO_COMPANIES_STANDARD_PROPERTIES, ATTIO_DEALS_STANDARD_PROPERTIES, ATTIO_PEOPLE_STANDARD_PROPERTIES, ATTIO_SCOPES_ACTIVITY_READ, ATTIO_SCOPES_LISTS_READ, ATTIO_SCOPES_MEMBERS_READ, ATTIO_SCOPES_RECORDS_READ, ATTIO_SCOPES_RECORDS_WRITE, ATTIO_SCOPES_SQL, ATTIO_STANDARD_PROPERTIES_BY_OBJECT, type AgentContext, type AgentContextCtx, type AgentQueryRunner, type AiModelId, type AnalysisResult, AnyPipeConstructor, AnyReportEffectConstructor, AnySheetEffectConstructor, AppError, AsyncIncludeExcludeSelectMeta, AsyncMultiSelectMeta, AttioAttributeRef, AttioAttributeTypeRule, AttioConditionOperator, AttioCoreObject, AttioFlattenRule, AttioStandardProperty, type AutocompleteOption, type AutocompleteSourceKey, type B2BPostMatchField, B2BPostMatchSchema, BUCKET_TYPES, BaseScheetSchemaDto, BillableOperation, BillableOperationDef, BillableOperationEstimate, BillableOperations, BillingMode, BooleanMeta, BucketClaimConfig, BucketClaimConfigSchema, BucketConfig, BucketCounterConfig, BucketCounterConfigSchema, BucketCreationSettings, BucketEntryField, BucketEntryFields, BucketEventCounterConfig, BucketEventCounterConfigSchema, BucketFieldDef, BucketFieldDefSchema, BucketFieldType, BucketFieldTypeSchema, BucketRequirement, BucketSchema, BucketSchemaSchema, BucketType, type BuiltWithTechStackTransformedRespoonse as BuiltWithDomainStack, type BuiltWithTechStackTransformedRespoonse, CALENDAR_EVENT_TYPES, CALLOUT_VARIANTS, CATALOG_SEARCH_WEIGHTS, CATEGORY_META, COMPANY_STANDARD_PROPERTIES, CONTACT_STANDARD_PROPERTIES, CREDIT_USD_VALUE, CURRENT_BUCKET_TYPE_VERSION, type CalendarEventMatch, type CalendarEventType, CalloutVariant, type CatalogEntityFilter, type CatalogFilter, type CatalogPattern, CatalogSchemaRef, CatalogSchemaRefSchema, type CatalogSearchFields, type CatalogSearchTarget, type CladoPersonMatch, type CladoPersonMatchV2, ConciseFieldValue, ConciseFieldValueSchema, Condition, ConditionBlock, ConditionBlockMeta, ConditionBlockSchema, ConditionEvaluationError, ConditionFieldNotFoundError, ConditionOperators, ConditionOperatorsSchema, ConfigField, ConnectorConnection, ConnectorMeta, type ConstantSuggestion, ContextSelectMeta, CostEstimateContext, type CrustdataCompanyMatchV2Field, CrustdataCompanyMatchV2Schema, CursorPaginationMeta, DEAL_STANDARD_PROPERTIES, DEFAULT_MODEL_COPY_WRITING, DEFAULT_MODEL_FAST_REASONING, DEFAULT_MODEL_REASONING, DateRangeMeta, type DedupConfig, type DedupStrategy, type DependencyGraphRelation, DerivedGroupedFieldOrder, DerivedInputFields, type DetectPersonProfileSignalsOptions, Effect, EffectAllSelectionSchema, EffectRowsSelectionSchema, EffectSelectionDto, EffectSelectionSchema, EffectWindowSelectionSchema, EffectsRequest, EffectsRequestSchema, EffectsResponse, EffectsResponseSchema, EffectsRunStatus, EffectsRunStatusSchema, EffectsValidateRequestSchema, EffectsValidateResponseSchema, EffectsValidateStepSchema, EmailValidationStatus, type EnabledIf, type EnabledResult, type EntryAccessLevel, EvaluableField, EvaluableFields, ExactRangeMeta, ExecutionMode, ExpandedFieldValue, ExpandedFieldValueSchema, ExternalProviderName, FIELD_PLACEHOLDERS, FORMULA_RESULT_TYPES, FieldAnnotation, FieldAnnotationSchema, FieldAnnotations, FieldAnnotationsSchema, FieldAnnotationsType, FieldCatalog, type FieldContextArgs, FieldContextCapableMeta, type FieldContextClient, type FieldContextSheetField, type FieldContextSheetSummary, FieldEntry, FieldGroup, FieldMode, FieldName, FieldNameSchema, type FieldPlaceholderKey, FieldReason, FieldReasonSchema, FieldSchemaType, FieldSelectMeta, FieldValue, FieldValueMap, FieldValueSchema, FieldsSelectMeta, FieldsToObjectsConfig, FormCustomization, type FormMask, type FormMaskCatalog, type FormResolvers, FormSection, FormSectionMeta, type FormStore, FormStoreSchema, type FormulaResultType, GeneratedFormInputType, GeneratedInputMeta, GeneratedInputMetaMap, type GetConnectionsArgs, type GetConstantsArgs, type GetSecretsArgs, GroupMap, GroupOverride, HIGH_VOLUME_PRICING_MIN_CREDITS, type HighVolumeEligibleOperation, HighVolumeLevel, type HighVolumeTier, INPUT_GROUP_KEY, type IconKey, IconWidgetKey, type IcypeasCompanyMatch, type IcypeasPersonMatch, IncludeExcludeMeta, IncludeExcludeSelectMeta, IntegerMeta, JSONExtractSchema, JSONExtraction, JSONExtractionMeta, JSONMeta, JSONMetaSchema, JSONSchemaMeta, JsonFieldType, LazyResolveContext, LooseObjectMeta, type LumaEventGuestMatch, MANAGED_TOKEN_MARGIN, MANUAL_DEFAULT, MAX_SIGNALS_PER_SCAN, ManagedCredits, MinMaxIntMeta, MultiCreateMeta, MultiSelectMeta, NamedFieldEntry, NoConnector, NoConnectorSchema, NullableBooleanMeta, NumberMeta, ObjectHasher, OptionalConnector, OptionalConnectorSchema, type OptionsDef, OrderedMultiCreateMeta, type OrgAccessLevel, type OutputDecl, OutputFieldMeta, PIPE0_DEFAULT_CONNECTION_PUBLIC_ID, PIPE_IDS, PLAYBOOK_IDS, PaginationType, PaginationTypeSchema, ParsedSheetChain, PathMap, PathOverride, type PersonProfileField, PersonProfileFieldSchema, PersonWorkemailWaterfall1Entry, PersonWorkemailWaterfall1PayloadSchema, PersonWorkemailWaterfall1PipeClass, Pipe, Pipe0Error, PipeBaseConfig, PipeCatalog, PipeCatalogEntry, PipeCategory, PipeCategoryEntry, PipeConfigMapByExpecutionType, PipeConnectionRequirement, PipeDef, PipeEntryWithLatestVersion, type PipeFieldContextDef, PipeFitInput, PipeFitOutputField, PipeFitResult, PipeId, PipeIdSchema, PipeInputField, PipeModuleExport, PipeOutputField, PipePayload, PipePayloadInput, PipePayloadMap, PipePayloadSchema, PipePayloadSchemaCatalog, PipeRequestPayloadMap, PipeRunIf, PipeRunIfSchema, PipelineValidationError, type PipesEnvironment, PipesEnvironmentSchema, PipesError, PipesErrorSchema, PipesFieldDefinition, PipesFieldDefinitionSchema, PipesFieldDefinitionWithName, PipesFieldDefinitions, PipesFieldDefinitionsSchema, PipesInMemoryResponse, PipesInput, PipesInputSchema, PipesRecord, PipesRequest, PipesRequestConfig, PipesRequestConfigSchema, PipesRequestPayload, PipesRequestSchema, PipesResponse, PipesResponseSchema, PipesRunIfMeta, PlaybookDef, PlaybookId, PlaybookStep, PlaybookStepKind, PlaybookVariant, ProcessedPipePayloadSchema, ProcessedSearchPayloadSchema, ProcessedSearchesPayloadSchema, ProcessedSheetEffectPayloadSchema, type ProfielField, PromptMeta, PropertyListMeta, ProviderCatalogEntry, ProviderName, ProviderNameSchema, ProviderRateLimitOperation, ProvidersInputMeta, RECORD_FIELD_FORMATS, RECORD_FIELD_TYPES, REJOIN_GAP_DAYS, REPORT_EFFECT_IDS, REPORT_ROW_CAP, REPORT_TAGS, RESERVED_FIELD_NAMES, RUN_IF_OPERATOR_LABELS, RUN_IF_STATUS_OPERATORS, RUN_IF_VALUE_OPERATORS, RUN_STATUS_OPTIONS, RangeMeta, RecordActionDetail, RecordActionDetailSchema, RecordClaimedBy, RecordClaimedBySchema, RecordDiffEntry, RecordDiffEntrySchema, RecordField, RecordFieldFormat, RecordFieldFormatSchema, RecordFieldSchema, RecordFieldStatus, RecordFieldStatusSchema, RecordFieldType, RecordFieldTypeSchema, RecordId, RecordIdSchema, RecordResolvedBy, RecordResolvedBySchema, RecordSchema, ReportChartData, ReportChartDataSchema, ReportData, ReportDataSchema, ReportDataValue, ReportDataValueSchema, ReportEffect, ReportEffectCatalog, ReportEffectDef, ReportEffectId, ReportEffectIdSchema, ReportEffectLifeCycle, ReportEffectPayload, ReportEffectPayloadCatalog, ReportEffectPayloadInput, ReportEffectPayloadMap, ReportEffectPayloadSchema, ReportEffectRunPayload, ReportEffectStepSummary, ReportEffectStepSummarySchema, ReportEffectsOperationResult, ReportEffectsRequest, ReportEffectsRequestSchema, ReportEffectsResponse, ReportEffectsResponseSchema, ReportEffectsValidationResult, ReportEffectsValidationStep, ReportMetricData, ReportMetricDataSchema, type ReportParseIssue, type ReportParseResult, type ReportSegment, ReportStatsData, ReportStatsDataSchema, ReportTableColumn, ReportTableData, ReportTableDataSchema, ReportTagName, ReportUpdateComputeResult, type ReportValidationIssue, type ReportValidationResult, RequestValidationError, RequiredConnector, RequiredConnectorSchema, type Requirement, RequirementSatisfactionResult, ResultColumn, type RichTextNode, RunIfStatusOperatorsSchema, RunIfStatusValueSchema, RunIfValueOperatorsSchema, RunStatus, RunStatusSchema, SALESFORCE_ACCOUNT_STANDARD_PROPERTIES, SALESFORCE_CONTACT_STANDARD_PROPERTIES, SALESFORCE_FIELD_TYPE_TABLE, SALESFORCE_LEAD_STANDARD_PROPERTIES, SALESFORCE_OPPORTUNITY_STANDARD_PROPERTIES, SALESFORCE_PERSON_STANDARD_PROPERTIES, SALESFORCE_STANDARD_PROPERTIES_BY_OBJECT, SALESFORCE_USER_STANDARD_PROPERTIES, SCHEDULED_DEFAULT, SEARCHES_IDS, SEARCH_IDS, SENIORITY_LEVELS, SHEET_EFFECT_IDS, SIGNAL_CATEGORIES, SIGNAL_LABELS, SIGNAL_SCOPES, SIGNAL_SUBCATEGORIES, SIGNAL_TAXONOMY, SIGNAL_TYPES, SIGNAL_WINDOW_DAYS, SafeFieldAnnotationPatch, SafeFieldAnnotationPatchSchema, SalesforceApiError, SalesforceConditionOperator, SalesforceCoreObject, SalesforceDuplicateInfo, SalesforceErrorClass, SalesforceFieldTypeRule, SalesforceStandardProperty, SalesforceValueEncoding, SchemaEvolution, SchemaInputs, SchemaRowMigration, Search, SearchCatalog, SearchCatalogEntry, SearchCatalogTableData, SearchCategory, SearchCategoryEntry, SearchError, SearchErrorSchema, SearchId, SearchIdSchema, SearchMetaEntryWithId, SearchOutputField, SearchPayload, SearchPayloadCatalog, SearchPayloadInput, SearchPayloadInputMeta, SearchPayloadMap, SearchPayloadSchema, SearchRequestPayload, SearchRequestPayloadMap, SearchRequestSchema, SearchRequestType, SearchResponse, SearchResponseSchema, SearchResult, SearchResultField, SearchResultFieldSchema, SearchResultSchema, SearchValidationResult, SearchesCatalog, SearchesCatalogEntry, SearchesCatalogTableData, SearchesCostPerResult, SearchesCostPerResultEntry, SearchesError, SearchesErrorSchema, SearchesId, SearchesIdSchema, SearchesMetaEntryWithId, SearchesPayload, SearchesPayloadCatalog, SearchesPayloadInput, SearchesPayloadMap, SearchesPayloadSchema, SearchesRequest, SearchesRequestBaseConfig, SearchesRequestBaseConfigSchema, SearchesRequestPayload, SearchesRequestPayloadMap, SearchesRequestSchema, SearchesResponse, SearchesResponseSchema, SearchesResult, SearchesResultField, SearchesResultFieldSchema, SearchesResultSchema, SearchesSearch, SearchesStatus, SearchesStatusSchema, SearchesValidationResult, type SecretSuggestion, SectionKeys, SectionMap, SectionOverride, SelectMeta, type SeniorityLevel, SheetEffect, SheetEffectCatalog, SheetEffectCatalogEntry, SheetEffectCatalogTableData, SheetEffectCategory, SheetEffectCategoryEntry, SheetEffectDef, SheetEffectId, SheetEffectIdSchema, SheetEffectLifeCycle, SheetEffectLockScope, SheetEffectLockingMode, SheetEffectMetaEntryWithId, SheetEffectPayload, SheetEffectPayloadCatalog, SheetEffectPayloadInput, SheetEffectPayloadMap, SheetEffectPayloadSchema, SheetEffectRequestPayloadMap, type SheetEffectSelectionMode, SheetEffectStepSummary, SheetEffectStepSummarySchema, SheetEffectStepValidation, SheetEffectValidationError, SheetEffectsCounts, SheetEffectsCountsSchema, SheetEffectsDiff, SheetEffectsDiffSchema, SheetEffectsOperationResult, SheetEffectsValidationResult, type Signal, type SignalCategory, type SignalScope, type SignalSubcategory, type SignalType, type StoreOption, StoreOptionAutocompleteOption, StoreOptionsDef, SupportedTags, TAG_ALLOWED_ATTRS, TAG_DATA_KIND, TOKEN_BLOCK_SIZE_INPUT, TOKEN_BLOCK_SIZE_OUTPUT, TYPES_TO_FORMATS, TaggedOrderedMultiCreateMeta, TaggedTextMeta, TemplateInputMeta, type Tenure, TextMeta, TextareaMeta, Tier, TokenBlockAccumulator, type TransformIntoResponseConfig, TypedFieldsSelectMeta, UpdatedActionDetail, UpdatedActionDetailSchema, type UserConnection, ValidatedSheetEffects, ValidationContext, ValueCondition, ValueConditionBlock, ValueConditionBlockSchema, type Widget, Widgets, type StoreOptionWidget as WidgetsByKind, StoreOptionWidgetSchema as WidgetsByKindSchema, WidgetsSchema, all, analyzeLiquidTemplate, analyzePipeFit, and, any, applyDataPatch, applyReportEdits, applyReportUpdate, assertSoqlIdentifier, assertUniqueBillableOperations, autocomplete, b2bPostMatchExample, bucketConfigSchemaFor, bucketSchemaFieldNames, bucketSchemasEqual, bucketSlugValue, buildAiModelTokenBillableOperations, buildAttioProjectionSet, buildCatalogSearchTarget, buildDependencyGraph, buildInputRequirementFromTemplates, buildKeysetPredicate, buildResultColumns, buildSalesforceFetchSet, buildSignalId, buildSoqlInList, buildTokenNote, catalogInput, chunkBySize, classifyEffectChainKind, classifySalesforceError, cleanObject, cleanUrl, cleanWebsiteUrl, collectConstantReferencesFromTemplates, collectPipeContextSelectFields, collectRequirementFields, collectSearchContextSelectFields, collectSecretReferencesFromTemplates, collectSheetEffectContextSelectFields, compilePattern, computeTenure, configDefaults, creditsPerBlock, crustdataCompanyMatchV2ExampleValue, decodeBucketContract, dedupeColumnNames, defaultBucketConfig, deriveGroupedFieldOrder, describeRequirement, detectPersonProfileSignals, domainToWebsiteVariants, encodeBucketContract, entityLogoFavicon, entityLogoProfessionalProfileUrl, escapeSoqlLikeValue, escapeSoqlString, estimateGuardCredits, evaluateConditionBlock, explainEffectIds, extractDuplicateInfo, extractFormMetadata, field, fieldBehaviorCatalog, fieldCatalog, fieldNameStr, fieldTypeFromValue, fieldsToObject, filterPipeEntries, filterSearchEntries, filterSearchesEntries, findMissingAttioScopes, formatSoqlBooleanValue, formatSoqlDateValue, formatSoqlNumberValue, getAgentAllowedEffectIds, getAgentAllowedReportEffectIds, getAiModelConnectionRequirements, getAiModelProviders, getAiModelTokenBillingKeys, getAiModelTokenCredits, getAllAiModelProviders, getAttioAttributeTypeRule, getBaseEffectName, getBasePipeName, getBaseSheetEffectName, getCatalogFieldOrder, getDefaultOutputFields, getDefaultPipeProviders, getDefaultSearchOutputFields, getDefaultSearchesOutputFields, getDependentPipeNamesForInputProperty, getDependentPipeNamesForPipe, getDomain, getEffectConfigHash, getExpansionState, getFaviconUrlGoogle, getField, getFieldBehavior, getFieldDisplayLabel, getFieldWidgets, getInitialSearchTableData, getInitialSearchesTableData, getInitialSheetEffectTableData, getInitialTableData, getInputHash, getJsonMetaForFieldDef, getLoweestSearchCreditAmount, getLoweestSearchesCreditAmount, getLowestPipeCreditAmount, getLowestSheetEffectCreditAmount, getOutputFieldInfoFromDef, getPipeAccessLevel, getPipeBillableOperationDef, getPipeCategoryEntries, getPipeCategoryEntry, getPipeClass, getPipeConfigHash, getPipeDefaultPayload, getPipeDocsURI, getPipeEntry, getPipeFormMask, getPipeInstances, getPipePayloadFormConfig, getPipePayloadSchema, getPipeSearchTarget, getPipeVersion, getPlaybookAccessLevel, getPlaybookEntry, getPlaybooksForPrimitive, getProviderBillableOperation, getProviderCreditsFromBillableOperations, getProviderEntry, getReadableFieldStatus, getReportEffectClass, getReportEffectEntry, getReportEffectInstance, getReportEffectPayloadSchema, getSalesforceFieldTypeRule, getSandboxConnections, getSandboxConnectionsForPipe, getSandboxConnectionsForSearch, getSandboxConnectionsForSearches, getSearchAccessLevel, getSearchCategoryEntries, getSearchCategoryEntry, getSearchClass, getSearchDefaultPayload, getSearchEntry, getSearchFieldWidgets, getSearchFormMask, getSearchInstance, getSearchPayloadFormConfig, getSearchPayloadSchema, getSearchSearchTarget, getSearchTableDataAggregates, getSearchVersion, getSearchesClass, getSearchesDefaultPayload, getSearchesEntry, getSearchesFieldWidgets, getSearchesInstances, getSearchesPayloadSchema, getSearchesSearchTarget, getSearchesTableDataAggregates, getSearchesVersion, getSeniorityEmojiFromTitle, getSeniorityLevelFromTitle, getSheetEffectCategoryEntries, getSheetEffectCategoryEntry, getSheetEffectClass, getSheetEffectConfigHash, getSheetEffectDefaultPayload, getSheetEffectEntry, getSheetEffectFormMask, getSheetEffectInstance, getSheetEffectPayloadFormConfig, getSheetEffectPayloadSchema, getSheetEffectSearchTarget, getStartingCostPerPipesProvider, getStartingCostPerSearchProvider, getStartingCostPerSearchesProvider, getTableDataAggregates, getTier, getUnexpandedValue, ifDefined, inputFields, inputFromRecord, inputFromRecordArr, inputFromRecords, inputGuards, isAgentAllowedEffect, isAgentAllowedReportEffect, isCatalogField, isEmptyValue, isEntryAccessible, isFieldName, isHighVolumeEligible, isPipeAllowed, isProviderAllowed, isRequirementMet, isRequirementSatisfiedByRecord, isReservedFieldName, isSearchAllowed, isSearchesAllowed, isSoqlDateLiteral, isTokenBilledOperations, isValidSalesforceId, isValidSoqlIdentifier, joinConnectionString, listHighVolumeEligibleOperations, listTiers, managedDefaultCreditOf, mappedBucketFieldNames, markRecordFieldAsComplete, markRecordFieldAsFailed, markRecordFieldAsNoResult, markRecordFieldAsPending, markRecordFieldAsProcessing, markRecordFieldAsSkipped, matchesAny, matchesPattern, mergeFormConfig, mergeWidgets, noConnectorInput, normalizeColumnName, normalizeDomain, optional, optionalConnectorInput, or, orgAccessLevelFromFlags, outputFields, parseAttributeRef, parseLiquidTemplate, parseOutputTagArgs, parseRecordValueOrError, parseRelaxedObject, parseReportSegments, parseRichText, parseSalesforceErrorBody, parseSheetChainDetailed, perUnit, personProfileMatchExample1, pipeCatalog, pipeCategoryCatalog, pipeClassCatalog, pipePayloadSchemaCatalog, pipesAliasableFieldsSelectInput, pipesAsyncIncludeExcludeSelectInput, pipesConditionInput, pipesContextSelectInput, pipesDateRangeInput, pipesDestinationFieldConfig, pipesFieldSelectInput, pipesFieldsSelectInput, pipesIncludeExcludeInput, pipesIncludeExcludeSelectInput, pipesInputField, pipesIntInput, pipesJsonExtractionInput, pipesJsonSchemaField, pipesLLMSelectInput, pipesLooseObjectInput, pipesMultiCreateInput, pipesMultiSelectInput, pipesNumberInput, pipesOptionalBooleanInput, pipesOrderedMultiCreateInput, pipesOutputField, pipesPayloadRegistry, pipesPromptInput, pipesPropertyListInput, pipesProviderInput, pipesRangeInput, pipesRowConditionInput, pipesRunIfInput, pipesSelectInput, pipesSnippetCatalog, pipesTaggedOrderedMultiCreateInput, pipesTaggedTextInput, pipesTemplateInput, pipesTextInput, pipesTextareaInput, pipesTypedFieldsSelectInput, placeholder, playbookCatalog, processInputObjects, projectOptionsDef, projectScopedSheetOptionsDef, providedCreationName, providedCreationPolicy, providerCatalog, rateLimitRatioFallingProgression, renameFieldInPipePayloads, renderAttioOperatorMatrix, renderLiquidTemplate, renderLiquidTemplateSync, renderSalesforceOperatorMatrix, reportEffectCatalog, reportEffectClassCatalog, reportEffectPayloadSchemaCatalog, requiredConnectorInput, requirementToInputFields, requirementUnmetMessage, requiresConnection, requiresField, resolveFormMask, resolveMappingEntry, roundrobinBucketSlug, roundrobinFilterKey, runReportEffectsValidation, runSheetEffectsValidation, runStatusesToQueueConfig, salesforceRecordUrl, schemaEvolutionFrom, scoreCatalogSearch, searchCatalog, searchCategoryCatalog, searchClassCatalog, searchPayloadSchemaCatalog, searchSnippetCatalog, searchesAsyncIncludeExcludeSelectInput, searchesAsyncMultiSelectInput, searchesCatalog, searchesClassCatalog, searchesConditionInput, searchesContextSelectInput, searchesDateRangeInput, searchesExactRangeInput, searchesIncludeExcludeInput, searchesIncludeExcludeSelectInput, searchesIntInput, searchesMinMaxIntInput, searchesMultiCreateInput, searchesMultiSelectInput, searchesNumberField, searchesOptionalBooleanInput, searchesOptionalConnectorInput, searchesOptionalNullableBooleanInput, searchesOrderedMultiCreateInput, searchesOutputField, searchesPayloadRegistry, searchesPayloadSchemaCatalog, searchesPropertyListInput, searchesRangeInput, searchesRequiredConnectorInput, searchesSelectInput, searchesTextInput, searchesTextareaField, seniorityLevelSchema, sheetColumnsOptionsDef, sheetEffectCatalog, sheetEffectCategoryCatalog, sheetEffectClassCatalog, sheetEffectPayloadSchemaCatalog, sheetEffectSnippetCatalog, sheetEffectsConditionInput, sheetEffectsContextSelectInput, sheetEffectsFieldsSelectInput, sheetEffectsIntInput, sheetEffectsLLMSelectInput, sheetEffectsMultiSelectInput, sheetEffectsNoConnectorInput, sheetEffectsOptionalBooleanInput, sheetEffectsOptionalConnectorInput, sheetEffectsOptionalIntInput, sheetEffectsPayloadRegistry, sheetEffectsRequiredConnectorInput, sheetEffectsSearchPayloadInput, sheetEffectsSelectInput, sheetEffectsSelectionInput, sheetEffectsTextInput, sheetEffectsTextareaInput, sheetOptionsDef, soqlStringLiteral, sortObjectKeys, sortPipeCatalogByBasePipe, sortSearchCatalogByBaseSearch, sortSearchesCatalogByBaseSearch, sortSheetEffectCatalogByBaseEffect, splitConnectionString, staticAutocomplete, staticOptions, stringify, stripStaticWidgets, summarizeEffectRun, summarizeReportEffectRun, tagPrimaryCurrentEducation, tagPrimaryCurrentEmployment, tagStaticWidgets, testPrint, tierAtOrBelow, tokenEstimate, tokenizeCatalogQuery, transformIntoResponse, tryDecodeBucketContract, tryParseRelaxedObject, validatePipesOrError, validateReportChainAgainstVersion, validateReportMarkdown, validateSearches, validateSheetEffectsOrError, validationErrorMessages, websiteToDomain };
|