@elevasis/sdk 1.14.0 → 1.14.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 +13 -0
- package/dist/test-utils/index.d.ts +13 -0
- package/dist/test-utils/index.js +1 -0
- package/dist/worker/index.js +1 -0
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -40481,7 +40481,7 @@ function wrapAction(commandName, fn) {
|
|
|
40481
40481
|
// package.json
|
|
40482
40482
|
var package_default = {
|
|
40483
40483
|
name: "@elevasis/sdk",
|
|
40484
|
-
version: "1.14.
|
|
40484
|
+
version: "1.14.1",
|
|
40485
40485
|
description: "SDK for building Elevasis organization resources",
|
|
40486
40486
|
type: "module",
|
|
40487
40487
|
bin: {
|
package/dist/index.d.ts
CHANGED
|
@@ -4891,6 +4891,15 @@ interface UpdateContactStageParams {
|
|
|
4891
4891
|
stage: string;
|
|
4892
4892
|
executionId?: string;
|
|
4893
4893
|
}
|
|
4894
|
+
interface AddCompaniesToListParams {
|
|
4895
|
+
organizationId: string;
|
|
4896
|
+
listId: string;
|
|
4897
|
+
companyIds: string[];
|
|
4898
|
+
}
|
|
4899
|
+
interface AddCompaniesToListResult {
|
|
4900
|
+
added: number;
|
|
4901
|
+
alreadyExisted: number;
|
|
4902
|
+
}
|
|
4894
4903
|
interface RecordListExecutionParams {
|
|
4895
4904
|
organizationId: string;
|
|
4896
4905
|
listId: string;
|
|
@@ -7664,6 +7673,10 @@ type LeadToolMap = {
|
|
|
7664
7673
|
params: Omit<AddContactsToListParams, 'organizationId'>;
|
|
7665
7674
|
result: AddContactsToListResult;
|
|
7666
7675
|
};
|
|
7676
|
+
addCompaniesToList: {
|
|
7677
|
+
params: Omit<AddCompaniesToListParams, 'organizationId'>;
|
|
7678
|
+
result: AddCompaniesToListResult;
|
|
7679
|
+
};
|
|
7667
7680
|
updateCompanyStage: {
|
|
7668
7681
|
params: Omit<UpdateCompanyStageParams, 'organizationId'>;
|
|
7669
7682
|
result: void;
|
|
@@ -4672,6 +4672,15 @@ interface UpdateContactStageParams {
|
|
|
4672
4672
|
stage: string;
|
|
4673
4673
|
executionId?: string;
|
|
4674
4674
|
}
|
|
4675
|
+
interface AddCompaniesToListParams {
|
|
4676
|
+
organizationId: string;
|
|
4677
|
+
listId: string;
|
|
4678
|
+
companyIds: string[];
|
|
4679
|
+
}
|
|
4680
|
+
interface AddCompaniesToListResult {
|
|
4681
|
+
added: number;
|
|
4682
|
+
alreadyExisted: number;
|
|
4683
|
+
}
|
|
4675
4684
|
interface RecordListExecutionParams {
|
|
4676
4685
|
organizationId: string;
|
|
4677
4686
|
listId: string;
|
|
@@ -7376,6 +7385,10 @@ type LeadToolMap = {
|
|
|
7376
7385
|
params: Omit<AddContactsToListParams, 'organizationId'>;
|
|
7377
7386
|
result: AddContactsToListResult;
|
|
7378
7387
|
};
|
|
7388
|
+
addCompaniesToList: {
|
|
7389
|
+
params: Omit<AddCompaniesToListParams, 'organizationId'>;
|
|
7390
|
+
result: AddCompaniesToListResult;
|
|
7391
|
+
};
|
|
7379
7392
|
updateCompanyStage: {
|
|
7380
7393
|
params: Omit<UpdateCompanyStageParams, 'organizationId'>;
|
|
7381
7394
|
result: void;
|
package/dist/test-utils/index.js
CHANGED
package/dist/worker/index.js
CHANGED