@trayio/cdk-dsl 5.22.1-unstable → 5.24.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.
|
@@ -15,5 +15,17 @@ export declare const MAXIMUM_MAX_FAILURE_COUNT = 150;
|
|
|
15
15
|
export type PollingTriggerInput = {
|
|
16
16
|
pollingInterval?: PollingInterval;
|
|
17
17
|
maxFailureCount?: number;
|
|
18
|
+
/**
|
|
19
|
+
* Connector-defined operation input configured for the polling trigger
|
|
20
|
+
* (e.g. for a Salesforce SOQL poll, the SOQL query string). The runtime
|
|
21
|
+
* forwards this to the Polling Service at register time so it can be
|
|
22
|
+
* replayed back to the connector on every poll tick.
|
|
23
|
+
*
|
|
24
|
+
* Typed as `unknown` at the DSL boundary because the shape is
|
|
25
|
+
* connector-specific and opaque to the platform. Connector authors
|
|
26
|
+
* typically model `IN extends PollingTriggerInput` with a concrete
|
|
27
|
+
* `operationInput` type of their own.
|
|
28
|
+
*/
|
|
29
|
+
operationInput?: unknown;
|
|
18
30
|
};
|
|
19
31
|
//# sourceMappingURL=PollingTypes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PollingTypes.d.ts","sourceRoot":"","sources":["../../../src/connector/operation/PollingTypes.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC9B,OAAO,YAAY;IACnB,KAAK,UAAU;CACf;AAED,MAAM,MAAM,eAAe,GAAG;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,mBAAmB,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,gCAAgC,IAAI,CAAC;AAClD,eAAO,MAAM,8BAA8B,IAAI,CAAC;AAEhD,eAAO,MAAM,wBAAwB,EAAE,eAGtC,CAAC;AAEF,eAAO,MAAM,yBAAyB,KAAK,CAAC;AAC5C,eAAO,MAAM,yBAAyB,IAAI,CAAC;AAC3C,eAAO,MAAM,yBAAyB,MAAM,CAAC;AAE7C,MAAM,MAAM,mBAAmB,GAAG;IACjC,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,eAAe,CAAC,EAAE,MAAM,CAAC;CACzB,CAAC"}
|
|
1
|
+
{"version":3,"file":"PollingTypes.d.ts","sourceRoot":"","sources":["../../../src/connector/operation/PollingTypes.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC9B,OAAO,YAAY;IACnB,KAAK,UAAU;CACf;AAED,MAAM,MAAM,eAAe,GAAG;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,mBAAmB,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,gCAAgC,IAAI,CAAC;AAClD,eAAO,MAAM,8BAA8B,IAAI,CAAC;AAEhD,eAAO,MAAM,wBAAwB,EAAE,eAGtC,CAAC;AAEF,eAAO,MAAM,yBAAyB,KAAK,CAAC;AAC5C,eAAO,MAAM,yBAAyB,IAAI,CAAC;AAC3C,eAAO,MAAM,yBAAyB,MAAM,CAAC;AAE7C,MAAM,MAAM,mBAAmB,GAAG;IACjC,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;;;;;;;OAUG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;CACzB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trayio/cdk-dsl",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.24.0",
|
|
4
4
|
"description": "A DSL for connector development",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": "./dist/*.js"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@trayio/commons": "5.
|
|
17
|
+
"@trayio/commons": "5.24.0"
|
|
18
18
|
},
|
|
19
19
|
"typesVersions": {
|
|
20
20
|
"*": {
|
|
@@ -26,6 +26,5 @@
|
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"/dist"
|
|
29
|
-
]
|
|
30
|
-
"stableVersion": "0.0.0"
|
|
29
|
+
]
|
|
31
30
|
}
|