@elevasis/sdk 0.7.1 → 0.7.3
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 +21 -13
- package/dist/index.d.ts +3 -2
- package/dist/index.js +20 -12
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -40068,13 +40068,14 @@ var import_module = require("module");
|
|
|
40068
40068
|
// ../core/src/platform/registry/domains.ts
|
|
40069
40069
|
var DOMAINS = {
|
|
40070
40070
|
// Business domains
|
|
40071
|
-
|
|
40072
|
-
|
|
40071
|
+
INBOUND_PIPELINE: "inbound-pipeline",
|
|
40072
|
+
LEAD_GEN_PIPELINE: "lead-gen-pipeline",
|
|
40073
40073
|
SUPPORT: "support",
|
|
40074
40074
|
DELIVERY: "delivery",
|
|
40075
40075
|
OPERATIONS: "operations",
|
|
40076
40076
|
FINANCE: "finance",
|
|
40077
40077
|
EXECUTIVE: "executive",
|
|
40078
|
+
INSTANTLY: "instantly",
|
|
40078
40079
|
// Technical domains
|
|
40079
40080
|
TESTING: "testing",
|
|
40080
40081
|
INTERNAL: "internal",
|
|
@@ -40082,16 +40083,16 @@ var DOMAINS = {
|
|
|
40082
40083
|
UTILITY: "utility",
|
|
40083
40084
|
DIAGNOSTIC: "diagnostic"
|
|
40084
40085
|
};
|
|
40085
|
-
var
|
|
40086
|
-
id: DOMAINS.
|
|
40087
|
-
name: "
|
|
40088
|
-
description: "
|
|
40086
|
+
var INBOUND_PIPELINE_DOMAIN = {
|
|
40087
|
+
id: DOMAINS.INBOUND_PIPELINE,
|
|
40088
|
+
name: "Inbound Pipeline",
|
|
40089
|
+
description: "End-to-end inbound client acquisition from first reply to onboarding",
|
|
40089
40090
|
color: "blue"
|
|
40090
40091
|
};
|
|
40091
|
-
var
|
|
40092
|
-
id: DOMAINS.
|
|
40093
|
-
name: "Lead
|
|
40094
|
-
description: "Lead
|
|
40092
|
+
var LEAD_GEN_PIPELINE_DOMAIN = {
|
|
40093
|
+
id: DOMAINS.LEAD_GEN_PIPELINE,
|
|
40094
|
+
name: "Lead Gen Pipeline",
|
|
40095
|
+
description: "Lead scraping, enrichment, qualification, and personalization",
|
|
40095
40096
|
color: "cyan"
|
|
40096
40097
|
};
|
|
40097
40098
|
var SUPPORT_DOMAIN = {
|
|
@@ -40142,6 +40143,12 @@ var INTEGRATION_DOMAIN = {
|
|
|
40142
40143
|
description: "External service integrations",
|
|
40143
40144
|
color: "teal"
|
|
40144
40145
|
};
|
|
40146
|
+
var INSTANTLY_DOMAIN = {
|
|
40147
|
+
id: DOMAINS.INSTANTLY,
|
|
40148
|
+
name: "Instantly Toolkit",
|
|
40149
|
+
description: "Instantly campaign creation, analytics, and optimization",
|
|
40150
|
+
color: "lime"
|
|
40151
|
+
};
|
|
40145
40152
|
var UTILITY_DOMAIN = {
|
|
40146
40153
|
id: DOMAINS.UTILITY,
|
|
40147
40154
|
name: "Utility",
|
|
@@ -40155,8 +40162,8 @@ var DIAGNOSTIC_DOMAIN = {
|
|
|
40155
40162
|
color: "yellow"
|
|
40156
40163
|
};
|
|
40157
40164
|
var DOMAIN_MAP = {
|
|
40158
|
-
[DOMAINS.
|
|
40159
|
-
[DOMAINS.
|
|
40165
|
+
[DOMAINS.INBOUND_PIPELINE]: INBOUND_PIPELINE_DOMAIN,
|
|
40166
|
+
[DOMAINS.LEAD_GEN_PIPELINE]: LEAD_GEN_PIPELINE_DOMAIN,
|
|
40160
40167
|
[DOMAINS.SUPPORT]: SUPPORT_DOMAIN,
|
|
40161
40168
|
[DOMAINS.DELIVERY]: DELIVERY_DOMAIN,
|
|
40162
40169
|
[DOMAINS.OPERATIONS]: OPERATIONS_DOMAIN,
|
|
@@ -40164,6 +40171,7 @@ var DOMAIN_MAP = {
|
|
|
40164
40171
|
[DOMAINS.EXECUTIVE]: EXECUTIVE_DOMAIN,
|
|
40165
40172
|
[DOMAINS.TESTING]: TESTING_DOMAIN,
|
|
40166
40173
|
[DOMAINS.INTERNAL]: INTERNAL_DOMAIN,
|
|
40174
|
+
[DOMAINS.INSTANTLY]: INSTANTLY_DOMAIN,
|
|
40167
40175
|
[DOMAINS.INTEGRATION]: INTEGRATION_DOMAIN,
|
|
40168
40176
|
[DOMAINS.UTILITY]: UTILITY_DOMAIN,
|
|
40169
40177
|
[DOMAINS.DIAGNOSTIC]: DIAGNOSTIC_DOMAIN
|
|
@@ -43969,7 +43977,7 @@ function wrapAction(commandName, fn) {
|
|
|
43969
43977
|
// package.json
|
|
43970
43978
|
var package_default = {
|
|
43971
43979
|
name: "@elevasis/sdk",
|
|
43972
|
-
version: "0.7.
|
|
43980
|
+
version: "0.7.3",
|
|
43973
43981
|
description: "SDK for building Elevasis organization resources",
|
|
43974
43982
|
type: "module",
|
|
43975
43983
|
bin: {
|
package/dist/index.d.ts
CHANGED
|
@@ -6727,13 +6727,14 @@ interface HumanCheckpointDefinition extends ResourceDefinition {
|
|
|
6727
6727
|
*/
|
|
6728
6728
|
|
|
6729
6729
|
declare const DOMAINS: {
|
|
6730
|
-
readonly
|
|
6731
|
-
readonly
|
|
6730
|
+
readonly INBOUND_PIPELINE: "inbound-pipeline";
|
|
6731
|
+
readonly LEAD_GEN_PIPELINE: "lead-gen-pipeline";
|
|
6732
6732
|
readonly SUPPORT: "support";
|
|
6733
6733
|
readonly DELIVERY: "delivery";
|
|
6734
6734
|
readonly OPERATIONS: "operations";
|
|
6735
6735
|
readonly FINANCE: "finance";
|
|
6736
6736
|
readonly EXECUTIVE: "executive";
|
|
6737
|
+
readonly INSTANTLY: "instantly";
|
|
6737
6738
|
readonly TESTING: "testing";
|
|
6738
6739
|
readonly INTERNAL: "internal";
|
|
6739
6740
|
readonly INTEGRATION: "integration";
|
package/dist/index.js
CHANGED
|
@@ -41,13 +41,14 @@ var ToolingError = class extends ExecutionError {
|
|
|
41
41
|
// ../core/src/platform/registry/domains.ts
|
|
42
42
|
var DOMAINS = {
|
|
43
43
|
// Business domains
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
INBOUND_PIPELINE: "inbound-pipeline",
|
|
45
|
+
LEAD_GEN_PIPELINE: "lead-gen-pipeline",
|
|
46
46
|
SUPPORT: "support",
|
|
47
47
|
DELIVERY: "delivery",
|
|
48
48
|
OPERATIONS: "operations",
|
|
49
49
|
FINANCE: "finance",
|
|
50
50
|
EXECUTIVE: "executive",
|
|
51
|
+
INSTANTLY: "instantly",
|
|
51
52
|
// Technical domains
|
|
52
53
|
TESTING: "testing",
|
|
53
54
|
INTERNAL: "internal",
|
|
@@ -55,16 +56,16 @@ var DOMAINS = {
|
|
|
55
56
|
UTILITY: "utility",
|
|
56
57
|
DIAGNOSTIC: "diagnostic"
|
|
57
58
|
};
|
|
58
|
-
var
|
|
59
|
-
id: DOMAINS.
|
|
60
|
-
name: "
|
|
61
|
-
description: "
|
|
59
|
+
var INBOUND_PIPELINE_DOMAIN = {
|
|
60
|
+
id: DOMAINS.INBOUND_PIPELINE,
|
|
61
|
+
name: "Inbound Pipeline",
|
|
62
|
+
description: "End-to-end inbound client acquisition from first reply to onboarding",
|
|
62
63
|
color: "blue"
|
|
63
64
|
};
|
|
64
|
-
var
|
|
65
|
-
id: DOMAINS.
|
|
66
|
-
name: "Lead
|
|
67
|
-
description: "Lead
|
|
65
|
+
var LEAD_GEN_PIPELINE_DOMAIN = {
|
|
66
|
+
id: DOMAINS.LEAD_GEN_PIPELINE,
|
|
67
|
+
name: "Lead Gen Pipeline",
|
|
68
|
+
description: "Lead scraping, enrichment, qualification, and personalization",
|
|
68
69
|
color: "cyan"
|
|
69
70
|
};
|
|
70
71
|
var SUPPORT_DOMAIN = {
|
|
@@ -115,6 +116,12 @@ var INTEGRATION_DOMAIN = {
|
|
|
115
116
|
description: "External service integrations",
|
|
116
117
|
color: "teal"
|
|
117
118
|
};
|
|
119
|
+
var INSTANTLY_DOMAIN = {
|
|
120
|
+
id: DOMAINS.INSTANTLY,
|
|
121
|
+
name: "Instantly Toolkit",
|
|
122
|
+
description: "Instantly campaign creation, analytics, and optimization",
|
|
123
|
+
color: "lime"
|
|
124
|
+
};
|
|
118
125
|
var UTILITY_DOMAIN = {
|
|
119
126
|
id: DOMAINS.UTILITY,
|
|
120
127
|
name: "Utility",
|
|
@@ -128,8 +135,8 @@ var DIAGNOSTIC_DOMAIN = {
|
|
|
128
135
|
color: "yellow"
|
|
129
136
|
};
|
|
130
137
|
var DOMAIN_MAP = {
|
|
131
|
-
[DOMAINS.
|
|
132
|
-
[DOMAINS.
|
|
138
|
+
[DOMAINS.INBOUND_PIPELINE]: INBOUND_PIPELINE_DOMAIN,
|
|
139
|
+
[DOMAINS.LEAD_GEN_PIPELINE]: LEAD_GEN_PIPELINE_DOMAIN,
|
|
133
140
|
[DOMAINS.SUPPORT]: SUPPORT_DOMAIN,
|
|
134
141
|
[DOMAINS.DELIVERY]: DELIVERY_DOMAIN,
|
|
135
142
|
[DOMAINS.OPERATIONS]: OPERATIONS_DOMAIN,
|
|
@@ -137,6 +144,7 @@ var DOMAIN_MAP = {
|
|
|
137
144
|
[DOMAINS.EXECUTIVE]: EXECUTIVE_DOMAIN,
|
|
138
145
|
[DOMAINS.TESTING]: TESTING_DOMAIN,
|
|
139
146
|
[DOMAINS.INTERNAL]: INTERNAL_DOMAIN,
|
|
147
|
+
[DOMAINS.INSTANTLY]: INSTANTLY_DOMAIN,
|
|
140
148
|
[DOMAINS.INTEGRATION]: INTEGRATION_DOMAIN,
|
|
141
149
|
[DOMAINS.UTILITY]: UTILITY_DOMAIN,
|
|
142
150
|
[DOMAINS.DIAGNOSTIC]: DIAGNOSTIC_DOMAIN
|