@keystrokehq/salesforce 0.0.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/README.md +205 -0
- package/dist/_official/index.d.mts +42 -0
- package/dist/_official/index.mjs +3 -0
- package/dist/_runtime/index.d.mts +6 -0
- package/dist/_runtime/index.mjs +89 -0
- package/dist/accounts.d.mts +97 -0
- package/dist/accounts.mjs +30 -0
- package/dist/associations.d.mts +40 -0
- package/dist/associations.mjs +70 -0
- package/dist/campaign-members.d.mts +97 -0
- package/dist/campaign-members.mjs +27 -0
- package/dist/campaigns.d.mts +97 -0
- package/dist/campaigns.mjs +28 -0
- package/dist/cases.d.mts +97 -0
- package/dist/cases.mjs +30 -0
- package/dist/client.d.mts +8 -0
- package/dist/client.mjs +26 -0
- package/dist/common-BUAhHMqn.mjs +28 -0
- package/dist/connection.d.mts +2 -0
- package/dist/connection.mjs +3 -0
- package/dist/contacts.d.mts +97 -0
- package/dist/contacts.mjs +29 -0
- package/dist/dashboards.d.mts +32 -0
- package/dist/dashboards.mjs +44 -0
- package/dist/factory-BBQAdBIT.mjs +8 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +1 -0
- package/dist/integration-CGYEE2Ge.d.mts +62 -0
- package/dist/integration-C_hbWu9t.mjs +131 -0
- package/dist/leads.d.mts +97 -0
- package/dist/leads.mjs +30 -0
- package/dist/messaging.d.mts +1 -0
- package/dist/messaging.mjs +1 -0
- package/dist/notes.d.mts +97 -0
- package/dist/notes.mjs +26 -0
- package/dist/objects.d.mts +23 -0
- package/dist/objects.mjs +31 -0
- package/dist/opportunities.d.mts +97 -0
- package/dist/opportunities.mjs +29 -0
- package/dist/opportunity-line-items.d.mts +97 -0
- package/dist/opportunity-line-items.mjs +29 -0
- package/dist/ownership.d.mts +25 -0
- package/dist/ownership.mjs +49 -0
- package/dist/reports.d.mts +40 -0
- package/dist/reports.mjs +59 -0
- package/dist/schemas/index.d.mts +40 -0
- package/dist/schemas/index.mjs +3 -0
- package/dist/shared-B8YQavkg.mjs +196 -0
- package/dist/soql.d.mts +47 -0
- package/dist/soql.mjs +30 -0
- package/dist/tasks.d.mts +97 -0
- package/dist/tasks.mjs +29 -0
- package/dist/triggers.d.mts +83 -0
- package/dist/triggers.mjs +318 -0
- package/dist/users.d.mts +14 -0
- package/dist/users.mjs +20 -0
- package/package.json +153 -0
package/package.json
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keystrokehq/salesforce",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.mts",
|
|
10
|
+
"default": "./dist/index.mjs"
|
|
11
|
+
},
|
|
12
|
+
"./connection": {
|
|
13
|
+
"types": "./dist/connection.d.mts",
|
|
14
|
+
"default": "./dist/connection.mjs"
|
|
15
|
+
},
|
|
16
|
+
"./messaging": {
|
|
17
|
+
"types": "./dist/messaging.d.mts",
|
|
18
|
+
"default": "./dist/messaging.mjs"
|
|
19
|
+
},
|
|
20
|
+
"./client": {
|
|
21
|
+
"types": "./dist/client.d.mts",
|
|
22
|
+
"default": "./dist/client.mjs"
|
|
23
|
+
},
|
|
24
|
+
"./schemas": {
|
|
25
|
+
"types": "./dist/schemas/index.d.mts",
|
|
26
|
+
"default": "./dist/schemas/index.mjs"
|
|
27
|
+
},
|
|
28
|
+
"./_official": {
|
|
29
|
+
"types": "./dist/_official/index.d.mts",
|
|
30
|
+
"default": "./dist/_official/index.mjs"
|
|
31
|
+
},
|
|
32
|
+
"./triggers": {
|
|
33
|
+
"types": "./dist/triggers.d.mts",
|
|
34
|
+
"default": "./dist/triggers.mjs"
|
|
35
|
+
},
|
|
36
|
+
"./accounts": {
|
|
37
|
+
"types": "./dist/accounts.d.mts",
|
|
38
|
+
"default": "./dist/accounts.mjs"
|
|
39
|
+
},
|
|
40
|
+
"./associations": {
|
|
41
|
+
"types": "./dist/associations.d.mts",
|
|
42
|
+
"default": "./dist/associations.mjs"
|
|
43
|
+
},
|
|
44
|
+
"./contacts": {
|
|
45
|
+
"types": "./dist/contacts.d.mts",
|
|
46
|
+
"default": "./dist/contacts.mjs"
|
|
47
|
+
},
|
|
48
|
+
"./campaign-members": {
|
|
49
|
+
"types": "./dist/campaign-members.d.mts",
|
|
50
|
+
"default": "./dist/campaign-members.mjs"
|
|
51
|
+
},
|
|
52
|
+
"./campaigns": {
|
|
53
|
+
"types": "./dist/campaigns.d.mts",
|
|
54
|
+
"default": "./dist/campaigns.mjs"
|
|
55
|
+
},
|
|
56
|
+
"./leads": {
|
|
57
|
+
"types": "./dist/leads.d.mts",
|
|
58
|
+
"default": "./dist/leads.mjs"
|
|
59
|
+
},
|
|
60
|
+
"./notes": {
|
|
61
|
+
"types": "./dist/notes.d.mts",
|
|
62
|
+
"default": "./dist/notes.mjs"
|
|
63
|
+
},
|
|
64
|
+
"./opportunities": {
|
|
65
|
+
"types": "./dist/opportunities.d.mts",
|
|
66
|
+
"default": "./dist/opportunities.mjs"
|
|
67
|
+
},
|
|
68
|
+
"./opportunity-line-items": {
|
|
69
|
+
"types": "./dist/opportunity-line-items.d.mts",
|
|
70
|
+
"default": "./dist/opportunity-line-items.mjs"
|
|
71
|
+
},
|
|
72
|
+
"./ownership": {
|
|
73
|
+
"types": "./dist/ownership.d.mts",
|
|
74
|
+
"default": "./dist/ownership.mjs"
|
|
75
|
+
},
|
|
76
|
+
"./cases": {
|
|
77
|
+
"types": "./dist/cases.d.mts",
|
|
78
|
+
"default": "./dist/cases.mjs"
|
|
79
|
+
},
|
|
80
|
+
"./tasks": {
|
|
81
|
+
"types": "./dist/tasks.d.mts",
|
|
82
|
+
"default": "./dist/tasks.mjs"
|
|
83
|
+
},
|
|
84
|
+
"./users": {
|
|
85
|
+
"types": "./dist/users.d.mts",
|
|
86
|
+
"default": "./dist/users.mjs"
|
|
87
|
+
},
|
|
88
|
+
"./soql": {
|
|
89
|
+
"types": "./dist/soql.d.mts",
|
|
90
|
+
"default": "./dist/soql.mjs"
|
|
91
|
+
},
|
|
92
|
+
"./objects": {
|
|
93
|
+
"types": "./dist/objects.d.mts",
|
|
94
|
+
"default": "./dist/objects.mjs"
|
|
95
|
+
},
|
|
96
|
+
"./reports": {
|
|
97
|
+
"types": "./dist/reports.d.mts",
|
|
98
|
+
"default": "./dist/reports.mjs"
|
|
99
|
+
},
|
|
100
|
+
"./dashboards": {
|
|
101
|
+
"types": "./dist/dashboards.d.mts",
|
|
102
|
+
"default": "./dist/dashboards.mjs"
|
|
103
|
+
},
|
|
104
|
+
"./_runtime": {
|
|
105
|
+
"types": "./dist/_runtime/index.d.mts",
|
|
106
|
+
"default": "./dist/_runtime/index.mjs"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"files": [
|
|
110
|
+
"dist",
|
|
111
|
+
"README.md"
|
|
112
|
+
],
|
|
113
|
+
"scripts": {
|
|
114
|
+
"typecheck": "tsgo --build",
|
|
115
|
+
"build": "tsdown",
|
|
116
|
+
"lint": "biome check .",
|
|
117
|
+
"test:unit": "vitest run --passWithNoTests --project unit",
|
|
118
|
+
"test:int": "vitest run --passWithNoTests --project int",
|
|
119
|
+
"prepublishOnly": "pnpm build && pnpm test:unit",
|
|
120
|
+
"lint:fix": "biome check --write ."
|
|
121
|
+
},
|
|
122
|
+
"dependencies": {
|
|
123
|
+
"@jsforce/jsforce-node": "^3.10.14",
|
|
124
|
+
"@keystrokehq/credential-connection": "^0.0.1",
|
|
125
|
+
"@keystrokehq/integration-authoring": "^0.0.1",
|
|
126
|
+
"@keystrokehq/core": "^0.0.5",
|
|
127
|
+
"zod": "^4.3.6"
|
|
128
|
+
},
|
|
129
|
+
"devDependencies": {
|
|
130
|
+
"@types/node": "catalog:",
|
|
131
|
+
"@keystrokehq/test-utils": "workspace:*",
|
|
132
|
+
"@keystrokehq/typescript-config": "workspace:*",
|
|
133
|
+
"tsdown": "catalog:",
|
|
134
|
+
"typescript": "catalog:",
|
|
135
|
+
"vitest": "catalog:"
|
|
136
|
+
},
|
|
137
|
+
"keywords": [
|
|
138
|
+
"salesforce",
|
|
139
|
+
"oauth",
|
|
140
|
+
"keystroke",
|
|
141
|
+
"integration"
|
|
142
|
+
],
|
|
143
|
+
"repository": {
|
|
144
|
+
"type": "git",
|
|
145
|
+
"url": "https://github.com/keystrokehq/integrations",
|
|
146
|
+
"directory": "integrations/salesforce"
|
|
147
|
+
},
|
|
148
|
+
"license": "MIT",
|
|
149
|
+
"publishConfig": {
|
|
150
|
+
"access": "public",
|
|
151
|
+
"registry": "https://registry.npmjs.org/"
|
|
152
|
+
}
|
|
153
|
+
}
|