@elevasis/sdk 0.5.24 → 0.6.1
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.cjs +1 -1
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -43873,7 +43873,7 @@ async function apiDelete(endpoint, apiUrl = resolveApiUrl()) {
|
|
|
43873
43873
|
// package.json
|
|
43874
43874
|
var package_default = {
|
|
43875
43875
|
name: "@elevasis/sdk",
|
|
43876
|
-
version: "0.
|
|
43876
|
+
version: "0.6.1",
|
|
43877
43877
|
description: "SDK for building Elevasis organization resources",
|
|
43878
43878
|
type: "module",
|
|
43879
43879
|
bin: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1192,6 +1192,7 @@ type Database = {
|
|
|
1192
1192
|
pipeline_status: Json;
|
|
1193
1193
|
segment: string | null;
|
|
1194
1194
|
source: string | null;
|
|
1195
|
+
status: string;
|
|
1195
1196
|
updated_at: string;
|
|
1196
1197
|
website: string | null;
|
|
1197
1198
|
};
|
|
@@ -1213,6 +1214,7 @@ type Database = {
|
|
|
1213
1214
|
pipeline_status?: Json;
|
|
1214
1215
|
segment?: string | null;
|
|
1215
1216
|
source?: string | null;
|
|
1217
|
+
status?: string;
|
|
1216
1218
|
updated_at?: string;
|
|
1217
1219
|
website?: string | null;
|
|
1218
1220
|
};
|
|
@@ -1234,6 +1236,7 @@ type Database = {
|
|
|
1234
1236
|
pipeline_status?: Json;
|
|
1235
1237
|
segment?: string | null;
|
|
1236
1238
|
source?: string | null;
|
|
1239
|
+
status?: string;
|
|
1237
1240
|
updated_at?: string;
|
|
1238
1241
|
website?: string | null;
|
|
1239
1242
|
};
|
|
@@ -3362,6 +3365,7 @@ interface AcqCompany {
|
|
|
3362
3365
|
enrichmentData: CompanyEnrichmentData | null;
|
|
3363
3366
|
source: string | null;
|
|
3364
3367
|
batchId: string | null;
|
|
3368
|
+
status: 'active' | 'invalid';
|
|
3365
3369
|
createdAt: Date;
|
|
3366
3370
|
updatedAt: Date;
|
|
3367
3371
|
}
|
|
@@ -3447,6 +3451,7 @@ interface UpdateCompanyParams {
|
|
|
3447
3451
|
/** Attio Company record ID - set when company is added to CRM. Pass null to clear. */
|
|
3448
3452
|
attioCompanyId?: string | null;
|
|
3449
3453
|
batchId?: string;
|
|
3454
|
+
status?: 'active' | 'invalid';
|
|
3450
3455
|
}
|
|
3451
3456
|
type UpsertCompanyParams = CreateCompanyParams;
|
|
3452
3457
|
interface CompanyFilters {
|
|
@@ -3456,6 +3461,8 @@ interface CompanyFilters {
|
|
|
3456
3461
|
category?: string;
|
|
3457
3462
|
pipelineStatus?: Record<string, unknown>;
|
|
3458
3463
|
batchId?: string;
|
|
3464
|
+
status?: 'active' | 'invalid';
|
|
3465
|
+
includeAll?: boolean;
|
|
3459
3466
|
}
|
|
3460
3467
|
interface CreateContactParams {
|
|
3461
3468
|
organizationId: string;
|
|
@@ -3492,6 +3499,7 @@ interface ContactFilters {
|
|
|
3492
3499
|
openingLineIsNull?: boolean;
|
|
3493
3500
|
pipelineStatus?: Record<string, unknown>;
|
|
3494
3501
|
batchId?: string;
|
|
3502
|
+
excludeInvalidCompanies?: boolean;
|
|
3495
3503
|
}
|
|
3496
3504
|
interface UpsertDealParams {
|
|
3497
3505
|
organizationId: string;
|