@bonsae/node-red-salesforce 0.2.0 → 0.3.0
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/index.d.ts +1 -13
- package/index.html +1 -1
- package/index.mjs +306 -299
- package/index.mjs.map +1 -1
- package/package.json +2 -2
- package/resources/index.e3npw131.js +1 -0
- package/resources/index.DheUFZEA.js +0 -1
package/index.d.ts
CHANGED
|
@@ -60,8 +60,6 @@ export declare class SalesforceApex extends IONode<Config, any, Input, Output> {
|
|
|
60
60
|
static readonly type = "salesforce-apex";
|
|
61
61
|
static readonly category = "salesforce";
|
|
62
62
|
static readonly color: `#${string}`;
|
|
63
|
-
static readonly inputs = 1;
|
|
64
|
-
static readonly outputs = 1;
|
|
65
63
|
static readonly configSchema: Schema;
|
|
66
64
|
static readonly inputSchema: Schema;
|
|
67
65
|
static readonly outputsSchema: Schema;
|
|
@@ -90,10 +88,9 @@ export declare class SalesforceBulk extends IONode<Config_3> {
|
|
|
90
88
|
static readonly type = "salesforce-bulk";
|
|
91
89
|
static readonly category = "salesforce";
|
|
92
90
|
static readonly color: `#${string}`;
|
|
93
|
-
static readonly inputs = 1;
|
|
94
|
-
static readonly outputs = 2;
|
|
95
91
|
static readonly configSchema: Schema;
|
|
96
92
|
static readonly inputSchema: Schema;
|
|
93
|
+
static readonly outputsSchema: Schema[];
|
|
97
94
|
private sendRecord;
|
|
98
95
|
private sendJobCreated;
|
|
99
96
|
private sendComplete;
|
|
@@ -152,8 +149,6 @@ export declare class SalesforceDescribe extends IONode<Config_4, any, Input_3, O
|
|
|
152
149
|
static readonly type = "salesforce-describe";
|
|
153
150
|
static readonly category = "salesforce";
|
|
154
151
|
static readonly color: `#${string}`;
|
|
155
|
-
static readonly inputs = 1;
|
|
156
|
-
static readonly outputs = 1;
|
|
157
152
|
static readonly configSchema: Schema;
|
|
158
153
|
static readonly inputSchema: Schema;
|
|
159
154
|
static readonly outputsSchema: Schema;
|
|
@@ -186,8 +181,6 @@ export declare class SalesforceDml extends IONode<Config_5, any, Input_4, Output
|
|
|
186
181
|
static readonly type = "salesforce-dml";
|
|
187
182
|
static readonly category = "salesforce";
|
|
188
183
|
static readonly color: `#${string}`;
|
|
189
|
-
static readonly inputs = 1;
|
|
190
|
-
static readonly outputs = 1;
|
|
191
184
|
static readonly configSchema: Schema;
|
|
192
185
|
static readonly inputSchema: Schema;
|
|
193
186
|
static readonly outputsSchema: Schema;
|
|
@@ -218,8 +211,6 @@ export declare class SalesforceSoql extends IONode<Config_6, any, Input_5, Outpu
|
|
|
218
211
|
static readonly type = "salesforce-soql";
|
|
219
212
|
static readonly category = "salesforce";
|
|
220
213
|
static readonly color: `#${string}`;
|
|
221
|
-
static readonly inputs = 1;
|
|
222
|
-
static readonly outputs = 1;
|
|
223
214
|
static readonly configSchema: Schema;
|
|
224
215
|
static readonly inputSchema: Schema;
|
|
225
216
|
static readonly outputsSchema: Schema;
|
|
@@ -246,8 +237,6 @@ export declare class SalesforceStreaming extends IONode<Config_7, any, any, Outp
|
|
|
246
237
|
static readonly type = "salesforce-streaming";
|
|
247
238
|
static readonly category = "salesforce";
|
|
248
239
|
static readonly color: `#${string}`;
|
|
249
|
-
static readonly inputs = 0;
|
|
250
|
-
static readonly outputs = 1;
|
|
251
240
|
static readonly configSchema: Schema;
|
|
252
241
|
static readonly outputsSchema: Schema;
|
|
253
242
|
private client;
|
|
@@ -260,7 +249,6 @@ export declare class SalesforceStreaming extends IONode<Config_7, any, any, Outp
|
|
|
260
249
|
private subscribe;
|
|
261
250
|
private scheduleReconnect;
|
|
262
251
|
private cleanup;
|
|
263
|
-
input(): Promise<void>;
|
|
264
252
|
closed(): Promise<void>;
|
|
265
253
|
}
|
|
266
254
|
|
package/index.html
CHANGED
|
@@ -63,4 +63,4 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
63
63
|
LICENSED WORK OR THE USE OR OTHER DEALINGS IN THE LICENSED WORK.
|
|
64
64
|
|
|
65
65
|
-->
|
|
66
|
-
<script type="module" src="resources/@bonsae/node-red-salesforce/index.
|
|
66
|
+
<script type="module" src="resources/@bonsae/node-red-salesforce/index.e3npw131.js" defer></script>
|