From 2642d389dda315880ee5a3612d84ccbd71f43b77 Mon Sep 17 00:00:00 2001 From: Matt Blewitt <118200221+mble-sfdc@users.noreply.github.com> Date: Fri, 6 Jun 2025 15:54:56 +0100 Subject: [PATCH 1/2] fix: don't try and be smart about UA version Don't get clever, just set a hardcoded version for now. Ref: W-18723611 --- src/utils/request.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/utils/request.ts b/src/utils/request.ts index 942a060..dbc903f 100644 --- a/src/utils/request.ts +++ b/src/utils/request.ts @@ -22,15 +22,9 @@ export class HTTPResponseError extends Error { */ export class HttpRequestUtil { async request(url: string, opts: any, json = true) { - const pjson = fs.readFileSync( - path.join(__dirname, "..", "package.json"), - "utf8" - ); - const pkg = JSON.parse(pjson); - const defaultOpts = { headers: { - "User-Agent": `heroku-applink-node-sdk/${pkg.version}`, + "User-Agent": `heroku-applink-node-sdk/1.0`, }, }; From 1a43a010f10290fe7e00d3ae1ce7bdda51206463 Mon Sep 17 00:00:00 2001 From: Matt Blewitt <118200221+mble-sfdc@users.noreply.github.com> Date: Fri, 6 Jun 2025 15:59:29 +0100 Subject: [PATCH 2/2] bump pre-release version --- CHANGELOG.md | 3 ++ docs/README.md | 4 +- docs/classes/HTTPResponseError.md | 8 ++-- docs/functions/init.md | 6 +-- docs/functions/parseDataActionEvent.md | 6 +-- docs/functions/parseRequest.md | 6 +-- docs/interfaces/BulkApi.md | 34 ++++++------- docs/interfaces/BulkApiError.md | 6 +-- docs/interfaces/Context.md | 8 ++-- docs/interfaces/DataApi.md | 20 ++++---- docs/interfaces/DataCloudActionEvent.md | 12 ++--- docs/interfaces/DataCloudActionEventSchema.md | 8 ++-- docs/interfaces/DataCloudApi.md | 10 ++-- docs/interfaces/DataCloudQuery.md | 6 +-- docs/interfaces/DataCloudQueryResponse.md | 20 ++++---- docs/interfaces/DataCloudUpsertResponse.md | 6 +-- docs/interfaces/DataObjectDataChgEvent.md | 30 ++++++------ docs/interfaces/DataTable.md | 6 +-- docs/interfaces/DataTableBuilder.md | 14 +++--- docs/interfaces/GetQueryJobResultsOptions.md | 6 +-- docs/interfaces/IngestJobFailure.md | 10 ++-- docs/interfaces/IngestJobInfo.md | 48 +++++++++---------- docs/interfaces/IngestJobOptions.md | 14 +++--- docs/interfaces/IngestJobReference.md | 8 ++-- docs/interfaces/InvocationEvent.md | 12 ++--- docs/interfaces/Logger.md | 14 +++--- docs/interfaces/Org.md | 20 ++++---- docs/interfaces/QueryJobInfo.md | 48 +++++++++---------- docs/interfaces/QueryJobOptions.md | 8 ++-- docs/interfaces/QueryJobReference.md | 8 ++-- docs/interfaces/QueryJobResults.md | 14 +++--- docs/interfaces/RecordModificationResult.md | 6 +-- docs/interfaces/RecordQueryResult.md | 12 ++--- docs/interfaces/ReferenceId.md | 8 ++-- docs/interfaces/UnitOfWork.md | 10 ++-- docs/interfaces/User.md | 8 ++-- .../DataTableFieldValueExtractor.md | 6 +-- docs/type-aliases/IngestJobOperation.md | 6 +-- docs/type-aliases/IngestJobState.md | 6 +-- docs/type-aliases/QueriedRecord.md | 6 +-- docs/type-aliases/QueryJobOperation.md | 6 +-- docs/type-aliases/QueryJobState.md | 6 +-- docs/type-aliases/Record.md | 6 +-- docs/type-aliases/RecordForCreate.md | 6 +-- docs/type-aliases/RecordForUpdate.md | 6 +-- package.json | 2 +- src/utils/request.ts | 3 -- 47 files changed, 263 insertions(+), 263 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index beaec1d..58f6881 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,3 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.0-ea.0] - 2025-06-06 - Add `X-App-UUID` header, `heroku-applink-node-sdk` UA. + +## [1.0.0-ea.1] - 2025-06-06 +- Remove dynamic UA. diff --git a/docs/README.md b/docs/README.md index 299e825..c0c71dd 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,8 +1,8 @@ -**@heroku/applink v1.0.0-ea.0** • **Docs** +**@heroku/applink v1.0.0-ea.1** • **Docs** *** -# @heroku/applink v1.0.0-ea.0 +# @heroku/applink v1.0.0-ea.1 ## Classes diff --git a/docs/classes/HTTPResponseError.md b/docs/classes/HTTPResponseError.md index 6666ec3..aa61f93 100644 --- a/docs/classes/HTTPResponseError.md +++ b/docs/classes/HTTPResponseError.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / HTTPResponseError +[@heroku/applink v1.0.0-ea.1](../README.md) / HTTPResponseError # Class: HTTPResponseError @@ -34,7 +34,7 @@ new HTTPResponseError(response): HTTPResponseError #### Defined in -[src/utils/request.ts:14](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/utils/request.ts#L14) +[src/utils/request.ts:14](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/utils/request.ts#L14) ## Properties @@ -78,7 +78,7 @@ response: any; #### Defined in -[src/utils/request.ts:13](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/utils/request.ts#L13) +[src/utils/request.ts:13](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/utils/request.ts#L13) *** diff --git a/docs/functions/init.md b/docs/functions/init.md index 1d621b0..5d419e3 100644 --- a/docs/functions/init.md +++ b/docs/functions/init.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / init +[@heroku/applink v1.0.0-ea.1](../README.md) / init # Function: init() @@ -128,4 +128,4 @@ logger: Logger; ## Defined in -[src/index.ts:25](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L25) +[src/index.ts:25](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L25) diff --git a/docs/functions/parseDataActionEvent.md b/docs/functions/parseDataActionEvent.md index 176ac2b..ef0fac4 100644 --- a/docs/functions/parseDataActionEvent.md +++ b/docs/functions/parseDataActionEvent.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / parseDataActionEvent +[@heroku/applink v1.0.0-ea.1](../README.md) / parseDataActionEvent # Function: parseDataActionEvent() @@ -22,4 +22,4 @@ Parse a [Data Action Target](https://help.salesforce.com/s/articleView?id=sf.c36 ## Defined in -[src/index.ts:105](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L105) +[src/index.ts:105](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L105) diff --git a/docs/functions/parseRequest.md b/docs/functions/parseRequest.md index dc8a9bc..e245945 100644 --- a/docs/functions/parseRequest.md +++ b/docs/functions/parseRequest.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / parseRequest +[@heroku/applink v1.0.0-ea.1](../README.md) / parseRequest # Function: parseRequest() @@ -55,4 +55,4 @@ logger: Logger; ## Defined in -[src/index.ts:49](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L49) +[src/index.ts:49](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L49) diff --git a/docs/interfaces/BulkApi.md b/docs/interfaces/BulkApi.md index ee94175..d04052b 100644 --- a/docs/interfaces/BulkApi.md +++ b/docs/interfaces/BulkApi.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / BulkApi +[@heroku/applink v1.0.0-ea.1](../README.md) / BulkApi # Interface: BulkApi @@ -37,7 +37,7 @@ The reference of the job to abort #### Defined in -[src/index.ts:426](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L426) +[src/index.ts:426](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L426) *** @@ -61,7 +61,7 @@ The names of the columns to include in the [DataTable](DataTable.md) #### Defined in -[src/index.ts:433](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L433) +[src/index.ts:433](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L433) *** @@ -91,7 +91,7 @@ The reference of the job to delete #### Defined in -[src/index.ts:443](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L443) +[src/index.ts:443](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L443) *** @@ -120,7 +120,7 @@ The Date to convert into the `date` format #### Defined in -[src/index.ts:460](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L460) +[src/index.ts:460](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L460) *** @@ -149,7 +149,7 @@ The Date to convert into the `dateTime` format #### Defined in -[src/index.ts:469](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L469) +[src/index.ts:469](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L469) *** @@ -172,7 +172,7 @@ to `null` use this formatter which will set the field value to `#N/A`. #### Defined in -[src/index.ts:451](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L451) +[src/index.ts:451](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L451) *** @@ -203,7 +203,7 @@ The reference of the job to get the failed results for #### Defined in -[src/index.ts:480](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L480) +[src/index.ts:480](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L480) *** @@ -232,7 +232,7 @@ The reference of the job to fetch information about #### Defined in -[src/index.ts:489](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L489) +[src/index.ts:489](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L489) *** @@ -264,7 +264,7 @@ Optional configuration that can be specified when fetching query results #### Defined in -[src/index.ts:500](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L500) +[src/index.ts:500](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L500) *** @@ -296,7 +296,7 @@ Optional configuration that can be specified when fetching query results #### Defined in -[src/index.ts:512](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L512) +[src/index.ts:512](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L512) *** @@ -327,7 +327,7 @@ The reference of the job to get the successful results for #### Defined in -[src/index.ts:526](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L526) +[src/index.ts:526](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L526) *** @@ -355,7 +355,7 @@ The reference of the job to get the unprocessed records for #### Defined in -[src/index.ts:534](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L534) +[src/index.ts:534](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L534) *** @@ -392,7 +392,7 @@ These are options that can be supplied when creating an ingest job. #### Defined in -[src/index.ts:551](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L551) +[src/index.ts:551](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L551) *** @@ -420,7 +420,7 @@ These are options that can be supplied when creating a query job. #### Defined in -[src/index.ts:561](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L561) +[src/index.ts:561](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L561) *** @@ -449,4 +449,4 @@ The [DataTable](DataTable.md) to split #### Defined in -[src/index.ts:570](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L570) +[src/index.ts:570](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L570) diff --git a/docs/interfaces/BulkApiError.md b/docs/interfaces/BulkApiError.md index a1f74be..2eaea90 100644 --- a/docs/interfaces/BulkApiError.md +++ b/docs/interfaces/BulkApiError.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / BulkApiError +[@heroku/applink v1.0.0-ea.1](../README.md) / BulkApiError # Interface: BulkApiError @@ -24,7 +24,7 @@ An error code indicating the type of error that occurred. #### Defined in -[src/index.ts:1036](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1036) +[src/index.ts:1036](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1036) *** diff --git a/docs/interfaces/Context.md b/docs/interfaces/Context.md index 2642ed7..a3bb6e4 100644 --- a/docs/interfaces/Context.md +++ b/docs/interfaces/Context.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / Context +[@heroku/applink v1.0.0-ea.1](../README.md) / Context # Interface: Context @@ -21,7 +21,7 @@ The unique identifier for a given execution of a function. #### Defined in -[src/index.ts:139](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L139) +[src/index.ts:139](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L139) *** @@ -35,4 +35,4 @@ Information about the invoking Salesforce organization. #### Defined in -[src/index.ts:140](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L140) +[src/index.ts:140](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L140) diff --git a/docs/interfaces/DataApi.md b/docs/interfaces/DataApi.md index e4acb25..6a1048c 100644 --- a/docs/interfaces/DataApi.md +++ b/docs/interfaces/DataApi.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataApi +[@heroku/applink v1.0.0-ea.1](../README.md) / DataApi # Interface: DataApi @@ -21,7 +21,7 @@ third-party API client or to perform custom API calls with a HTTP library. #### Defined in -[src/index.ts:306](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L306) +[src/index.ts:306](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L306) ## Methods @@ -50,7 +50,7 @@ A map of [RecordModificationResult](RecordModificationResult.md)s, indexed by th #### Defined in -[src/index.ts:358](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L358) +[src/index.ts:358](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L358) *** @@ -76,7 +76,7 @@ A [RecordModificationResult](RecordModificationResult.md) that contains the crea #### Defined in -[src/index.ts:327](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L327) +[src/index.ts:327](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L327) *** @@ -106,7 +106,7 @@ A [RecordModificationResult](RecordModificationResult.md) that contains the dele #### Defined in -[src/index.ts:342](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L342) +[src/index.ts:342](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L342) *** @@ -126,7 +126,7 @@ An empty [UnitOfWork](UnitOfWork.md). #### Defined in -[src/index.ts:348](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L348) +[src/index.ts:348](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L348) *** @@ -152,7 +152,7 @@ A [RecordQueryResult](RecordQueryResult.md) that contains the queried data wrapp #### Defined in -[src/index.ts:313](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L313) +[src/index.ts:313](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L313) *** @@ -178,7 +178,7 @@ A [RecordQueryResult](RecordQueryResult.md) that contains the queried data wrapp #### Defined in -[src/index.ts:320](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L320) +[src/index.ts:320](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L320) *** @@ -204,4 +204,4 @@ A [RecordModificationResult](RecordModificationResult.md) that contains the upda #### Defined in -[src/index.ts:334](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L334) +[src/index.ts:334](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L334) diff --git a/docs/interfaces/DataCloudActionEvent.md b/docs/interfaces/DataCloudActionEvent.md index 6690f1e..ac436c3 100644 --- a/docs/interfaces/DataCloudActionEvent.md +++ b/docs/interfaces/DataCloudActionEvent.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataCloudActionEvent +[@heroku/applink v1.0.0-ea.1](../README.md) / DataCloudActionEvent # Interface: DataCloudActionEvent @@ -18,7 +18,7 @@ count: number; #### Defined in -[src/index.ts:1073](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1073) +[src/index.ts:1073](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1073) *** @@ -30,7 +30,7 @@ creationDateTime: string; #### Defined in -[src/index.ts:1072](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1072) +[src/index.ts:1072](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1072) *** @@ -42,7 +42,7 @@ events: DataObjectDataChgEvent[]; #### Defined in -[src/index.ts:1075](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1075) +[src/index.ts:1075](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1075) *** @@ -54,4 +54,4 @@ schemas: DataCloudActionEventSchema[]; #### Defined in -[src/index.ts:1074](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1074) +[src/index.ts:1074](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1074) diff --git a/docs/interfaces/DataCloudActionEventSchema.md b/docs/interfaces/DataCloudActionEventSchema.md index d2511d4..6e15664 100644 --- a/docs/interfaces/DataCloudActionEventSchema.md +++ b/docs/interfaces/DataCloudActionEventSchema.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataCloudActionEventSchema +[@heroku/applink v1.0.0-ea.1](../README.md) / DataCloudActionEventSchema # Interface: DataCloudActionEventSchema @@ -18,7 +18,7 @@ schema: string; #### Defined in -[src/index.ts:1046](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1046) +[src/index.ts:1046](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1046) *** @@ -30,4 +30,4 @@ schemaId: string; #### Defined in -[src/index.ts:1045](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1045) +[src/index.ts:1045](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1045) diff --git a/docs/interfaces/DataCloudApi.md b/docs/interfaces/DataCloudApi.md index 97d0252..1797345 100644 --- a/docs/interfaces/DataCloudApi.md +++ b/docs/interfaces/DataCloudApi.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataCloudApi +[@heroku/applink v1.0.0-ea.1](../README.md) / DataCloudApi # Interface: DataCloudApi @@ -26,7 +26,7 @@ query(sql): Promise #### Defined in -[src/index.ts:1111](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1111) +[src/index.ts:1111](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1111) *** @@ -48,7 +48,7 @@ queryNextBatch(nextBatchId): Promise #### Defined in -[src/index.ts:1117](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1117) +[src/index.ts:1117](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1117) *** @@ -77,4 +77,4 @@ data): Promise #### Defined in -[src/index.ts:1125](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1125) +[src/index.ts:1125](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1125) diff --git a/docs/interfaces/DataCloudQuery.md b/docs/interfaces/DataCloudQuery.md index d644669..7922e28 100644 --- a/docs/interfaces/DataCloudQuery.md +++ b/docs/interfaces/DataCloudQuery.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataCloudQuery +[@heroku/applink v1.0.0-ea.1](../README.md) / DataCloudQuery # Interface: DataCloudQuery @@ -18,4 +18,4 @@ sql: string; #### Defined in -[src/index.ts:1082](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1082) +[src/index.ts:1082](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1082) diff --git a/docs/interfaces/DataCloudQueryResponse.md b/docs/interfaces/DataCloudQueryResponse.md index 51f601c..caf9432 100644 --- a/docs/interfaces/DataCloudQueryResponse.md +++ b/docs/interfaces/DataCloudQueryResponse.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataCloudQueryResponse +[@heroku/applink v1.0.0-ea.1](../README.md) / DataCloudQueryResponse # Interface: DataCloudQueryResponse @@ -18,7 +18,7 @@ data: any[]; #### Defined in -[src/index.ts:1089](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1089) +[src/index.ts:1089](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1089) *** @@ -30,7 +30,7 @@ done: boolean; #### Defined in -[src/index.ts:1095](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1095) +[src/index.ts:1095](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1095) *** @@ -42,7 +42,7 @@ endTime: string; #### Defined in -[src/index.ts:1091](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1091) +[src/index.ts:1091](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1091) *** @@ -54,7 +54,7 @@ metadata: any; #### Defined in -[src/index.ts:1096](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1096) +[src/index.ts:1096](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1096) *** @@ -66,7 +66,7 @@ nextBatchId: string; #### Defined in -[src/index.ts:1094](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1094) +[src/index.ts:1094](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1094) *** @@ -78,7 +78,7 @@ queryId: string; #### Defined in -[src/index.ts:1093](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1093) +[src/index.ts:1093](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1093) *** @@ -90,7 +90,7 @@ rowCount: number; #### Defined in -[src/index.ts:1092](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1092) +[src/index.ts:1092](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1092) *** @@ -102,4 +102,4 @@ startTime: string; #### Defined in -[src/index.ts:1090](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1090) +[src/index.ts:1090](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1090) diff --git a/docs/interfaces/DataCloudUpsertResponse.md b/docs/interfaces/DataCloudUpsertResponse.md index 4dfb769..5f8874e 100644 --- a/docs/interfaces/DataCloudUpsertResponse.md +++ b/docs/interfaces/DataCloudUpsertResponse.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataCloudUpsertResponse +[@heroku/applink v1.0.0-ea.1](../README.md) / DataCloudUpsertResponse # Interface: DataCloudUpsertResponse @@ -18,4 +18,4 @@ accepted: boolean; #### Defined in -[src/index.ts:1103](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1103) +[src/index.ts:1103](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1103) diff --git a/docs/interfaces/DataObjectDataChgEvent.md b/docs/interfaces/DataObjectDataChgEvent.md index 2dc662b..08f75ce 100644 --- a/docs/interfaces/DataObjectDataChgEvent.md +++ b/docs/interfaces/DataObjectDataChgEvent.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataObjectDataChgEvent +[@heroku/applink v1.0.0-ea.1](../README.md) / DataObjectDataChgEvent # Interface: DataObjectDataChgEvent @@ -18,7 +18,7 @@ ActionDeveloperName: string; #### Defined in -[src/index.ts:1053](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1053) +[src/index.ts:1053](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1053) *** @@ -30,7 +30,7 @@ EventCreationDateTime: string; #### Defined in -[src/index.ts:1054](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1054) +[src/index.ts:1054](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1054) *** @@ -42,7 +42,7 @@ EventPrompt: string; #### Defined in -[src/index.ts:1055](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1055) +[src/index.ts:1055](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1055) *** @@ -54,7 +54,7 @@ EventPublishDateTime: string; #### Defined in -[src/index.ts:1056](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1056) +[src/index.ts:1056](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1056) *** @@ -66,7 +66,7 @@ EventSchemaVersion: string; #### Defined in -[src/index.ts:1057](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1057) +[src/index.ts:1057](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1057) *** @@ -78,7 +78,7 @@ EventType: string; #### Defined in -[src/index.ts:1058](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1058) +[src/index.ts:1058](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1058) *** @@ -90,7 +90,7 @@ EventUuid: string; #### Defined in -[src/index.ts:1059](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1059) +[src/index.ts:1059](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1059) *** @@ -102,7 +102,7 @@ Offset: string; #### Defined in -[src/index.ts:1060](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1060) +[src/index.ts:1060](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1060) *** @@ -114,7 +114,7 @@ PayloadCurrentValue: string; #### Defined in -[src/index.ts:1061](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1061) +[src/index.ts:1061](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1061) *** @@ -126,7 +126,7 @@ PayloadMetadata: string; #### Defined in -[src/index.ts:1063](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1063) +[src/index.ts:1063](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1063) *** @@ -138,7 +138,7 @@ PayloadPrevValue: string; #### Defined in -[src/index.ts:1062](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1062) +[src/index.ts:1062](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1062) *** @@ -150,7 +150,7 @@ ReplayId: string; #### Defined in -[src/index.ts:1064](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1064) +[src/index.ts:1064](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1064) *** @@ -162,4 +162,4 @@ SourceObjectDeveloperName: string; #### Defined in -[src/index.ts:1065](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1065) +[src/index.ts:1065](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1065) diff --git a/docs/interfaces/DataTable.md b/docs/interfaces/DataTable.md index b743282..350722c 100644 --- a/docs/interfaces/DataTable.md +++ b/docs/interfaces/DataTable.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataTable +[@heroku/applink v1.0.0-ea.1](../README.md) / DataTable # Interface: DataTable @@ -259,7 +259,7 @@ A list of one or more column names contained in this data table. #### Defined in -[src/index.ts:938](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L938) +[src/index.ts:938](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L938) *** diff --git a/docs/interfaces/DataTableBuilder.md b/docs/interfaces/DataTableBuilder.md index 225a911..2f770ab 100644 --- a/docs/interfaces/DataTableBuilder.md +++ b/docs/interfaces/DataTableBuilder.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataTableBuilder +[@heroku/applink v1.0.0-ea.1](../README.md) / DataTableBuilder # Interface: DataTableBuilder @@ -35,7 +35,7 @@ The row of data to add ##### Defined in -[src/index.ts:966](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L966) +[src/index.ts:966](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L966) #### addRow(value, fieldValueExtractor) @@ -68,7 +68,7 @@ A function that reads field values from the provided object. It will be called f ##### Defined in -[src/index.ts:976](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L976) +[src/index.ts:976](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L976) *** @@ -97,7 +97,7 @@ The list of rows of data to add ##### Defined in -[src/index.ts:986](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L986) +[src/index.ts:986](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L986) #### addRows(values, fieldValueExtractor) @@ -130,7 +130,7 @@ A function that reads field values from each provided object in the list of valu ##### Defined in -[src/index.ts:996](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L996) +[src/index.ts:996](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L996) *** @@ -148,4 +148,4 @@ Creates a [DataTable](DataTable.md) instance from the columns and rows provided #### Defined in -[src/index.ts:1004](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1004) +[src/index.ts:1004](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1004) diff --git a/docs/interfaces/GetQueryJobResultsOptions.md b/docs/interfaces/GetQueryJobResultsOptions.md index 4ba24be..5f0b3f3 100644 --- a/docs/interfaces/GetQueryJobResultsOptions.md +++ b/docs/interfaces/GetQueryJobResultsOptions.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / GetQueryJobResultsOptions +[@heroku/applink v1.0.0-ea.1](../README.md) / GetQueryJobResultsOptions # Interface: GetQueryJobResultsOptions @@ -28,4 +28,4 @@ If you don’t provide a value for this parameter, the server uses a default val #### Defined in -[src/index.ts:669](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L669) +[src/index.ts:669](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L669) diff --git a/docs/interfaces/IngestJobFailure.md b/docs/interfaces/IngestJobFailure.md index c1867d4..5ad8b7e 100644 --- a/docs/interfaces/IngestJobFailure.md +++ b/docs/interfaces/IngestJobFailure.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / IngestJobFailure +[@heroku/applink v1.0.0-ea.1](../README.md) / IngestJobFailure # Interface: IngestJobFailure @@ -20,7 +20,7 @@ The error that occurred while attempting to construct the ingest job. #### Defined in -[src/index.ts:1014](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1014) +[src/index.ts:1014](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1014) *** @@ -36,7 +36,7 @@ the ingest job then a job reference will be present. #### Defined in -[src/index.ts:1026](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1026) +[src/index.ts:1026](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1026) *** @@ -50,4 +50,4 @@ The data that would have been uploaded to the ingest job had the operation succe #### Defined in -[src/index.ts:1019](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L1019) +[src/index.ts:1019](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L1019) diff --git a/docs/interfaces/IngestJobInfo.md b/docs/interfaces/IngestJobInfo.md index 06e48f1..5fbcf45 100644 --- a/docs/interfaces/IngestJobInfo.md +++ b/docs/interfaces/IngestJobInfo.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / IngestJobInfo +[@heroku/applink v1.0.0-ea.1](../README.md) / IngestJobInfo # Interface: IngestJobInfo @@ -30,7 +30,7 @@ asynchronous and batch Apex operations. If there are no triggers, the value is 0 #### Defined in -[src/index.ts:678](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L678) +[src/index.ts:678](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L678) *** @@ -50,7 +50,7 @@ to be processed or the time required for serialization and deserialization. #### Defined in -[src/index.ts:685](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L685) +[src/index.ts:685](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L685) *** @@ -68,7 +68,7 @@ The API version that the job was created in. #### Defined in -[src/index.ts:690](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L690) +[src/index.ts:690](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L690) *** @@ -86,7 +86,7 @@ The ID of an assignment rule to run for a Case or a Lead. #### Defined in -[src/index.ts:811](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L811) +[src/index.ts:811](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L811) *** @@ -104,7 +104,7 @@ The column delimiter used for CSV job data. #### Defined in -[src/index.ts:695](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L695) +[src/index.ts:695](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L695) *** @@ -122,7 +122,7 @@ How the request was processed. #### Defined in -[src/index.ts:700](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L700) +[src/index.ts:700](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L700) *** @@ -140,7 +140,7 @@ The format of the data being processed. Only CSV is supported. #### Defined in -[src/index.ts:705](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L705) +[src/index.ts:705](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L705) *** @@ -158,7 +158,7 @@ The URL to use for Upload job Data requests for this job. Only valid if the job #### Defined in -[src/index.ts:710](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L710) +[src/index.ts:710](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L710) *** @@ -176,7 +176,7 @@ The ID of the user who created the job. #### Defined in -[src/index.ts:715](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L715) +[src/index.ts:715](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L715) *** @@ -194,7 +194,7 @@ The date and time in the UTC time zone when the job was created. #### Defined in -[src/index.ts:720](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L720) +[src/index.ts:720](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L720) *** @@ -212,7 +212,7 @@ The name of the external ID field for an upsert. #### Defined in -[src/index.ts:816](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L816) +[src/index.ts:816](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L816) *** @@ -230,7 +230,7 @@ Unique ID for this job. #### Defined in -[src/index.ts:725](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L725) +[src/index.ts:725](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L725) *** @@ -248,7 +248,7 @@ The job’s type. #### Defined in -[src/index.ts:796](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L796) +[src/index.ts:796](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L796) *** @@ -266,7 +266,7 @@ The line ending used for CSV job data. #### Defined in -[src/index.ts:735](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L735) +[src/index.ts:735](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L735) *** @@ -284,7 +284,7 @@ The number of records that were not processed successfully in this job. #### Defined in -[src/index.ts:821](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L821) +[src/index.ts:821](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L821) *** @@ -302,7 +302,7 @@ The number of records already processed. #### Defined in -[src/index.ts:826](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L826) +[src/index.ts:826](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L826) *** @@ -320,7 +320,7 @@ The object type for the data being processed. #### Defined in -[src/index.ts:740](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L740) +[src/index.ts:740](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L740) *** @@ -338,7 +338,7 @@ The processing operation for the job. #### Defined in -[src/index.ts:801](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L801) +[src/index.ts:801](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L801) *** @@ -357,7 +357,7 @@ operation. The repeated attempts are due to a problem, such as a lock contention #### Defined in -[src/index.ts:751](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L751) +[src/index.ts:751](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L751) *** @@ -375,7 +375,7 @@ The current state of processing for the job. #### Defined in -[src/index.ts:806](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L806) +[src/index.ts:806](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L806) *** @@ -393,7 +393,7 @@ Date and time in the UTC time zone when the job finished. #### Defined in -[src/index.ts:761](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L761) +[src/index.ts:761](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L761) *** @@ -411,4 +411,4 @@ The number of milliseconds taken to process the job. #### Defined in -[src/index.ts:766](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L766) +[src/index.ts:766](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L766) diff --git a/docs/interfaces/IngestJobOptions.md b/docs/interfaces/IngestJobOptions.md index 7682461..4459bc5 100644 --- a/docs/interfaces/IngestJobOptions.md +++ b/docs/interfaces/IngestJobOptions.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / IngestJobOptions +[@heroku/applink v1.0.0-ea.1](../README.md) / IngestJobOptions # Interface: IngestJobOptions @@ -23,7 +23,7 @@ Platform SOAP API or the Lightning Platform REST API to query the AssignmentRule #### Defined in -[src/index.ts:604](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L604) +[src/index.ts:604](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L604) *** @@ -37,7 +37,7 @@ The data table to be ingested #### Defined in -[src/index.ts:581](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L581) +[src/index.ts:581](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L581) *** @@ -52,7 +52,7 @@ operations. Field values must also exist in CSV job data. #### Defined in -[src/index.ts:597](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L597) +[src/index.ts:597](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L597) *** @@ -66,7 +66,7 @@ The object type for the data being processed. Use only a single object type per #### Defined in -[src/index.ts:586](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L586) +[src/index.ts:586](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L586) *** @@ -80,4 +80,4 @@ The processing operation for the job #### Defined in -[src/index.ts:591](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L591) +[src/index.ts:591](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L591) diff --git a/docs/interfaces/IngestJobReference.md b/docs/interfaces/IngestJobReference.md index c30e3c8..fc54b00 100644 --- a/docs/interfaces/IngestJobReference.md +++ b/docs/interfaces/IngestJobReference.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / IngestJobReference +[@heroku/applink v1.0.0-ea.1](../README.md) / IngestJobReference # Interface: IngestJobReference @@ -20,7 +20,7 @@ The id of the ingest job #### Defined in -[src/index.ts:631](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L631) +[src/index.ts:631](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L631) *** @@ -34,4 +34,4 @@ The type for this reference #### Defined in -[src/index.ts:636](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L636) +[src/index.ts:636](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L636) diff --git a/docs/interfaces/InvocationEvent.md b/docs/interfaces/InvocationEvent.md index 7601659..7709ffc 100644 --- a/docs/interfaces/InvocationEvent.md +++ b/docs/interfaces/InvocationEvent.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / InvocationEvent +[@heroku/applink v1.0.0-ea.1](../README.md) / InvocationEvent # Interface: InvocationEvent\ @@ -25,7 +25,7 @@ The payload of the event #### Defined in -[src/index.ts:126](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L126) +[src/index.ts:126](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L126) *** @@ -39,7 +39,7 @@ The media type of the event payload that is accessible in data #### Defined in -[src/index.ts:127](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L127) +[src/index.ts:127](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L127) *** @@ -53,7 +53,7 @@ The platform event occurrence id for event invocation. #### Defined in -[src/index.ts:128](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L128) +[src/index.ts:128](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L128) *** @@ -71,4 +71,4 @@ the same algorithm to determine the value used. #### Defined in -[src/index.ts:129](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L129) +[src/index.ts:129](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L129) diff --git a/docs/interfaces/Logger.md b/docs/interfaces/Logger.md index 40696f8..2cd67f5 100644 --- a/docs/interfaces/Logger.md +++ b/docs/interfaces/Logger.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / Logger +[@heroku/applink v1.0.0-ea.1](../README.md) / Logger # Interface: Logger @@ -32,7 +32,7 @@ void #### Defined in -[src/index.ts:403](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L403) +[src/index.ts:403](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L403) *** @@ -58,7 +58,7 @@ void #### Defined in -[src/index.ts:382](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L382) +[src/index.ts:382](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L382) *** @@ -84,7 +84,7 @@ void #### Defined in -[src/index.ts:396](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L396) +[src/index.ts:396](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L396) *** @@ -110,7 +110,7 @@ void #### Defined in -[src/index.ts:410](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L410) +[src/index.ts:410](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L410) *** @@ -136,4 +136,4 @@ void #### Defined in -[src/index.ts:389](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L389) +[src/index.ts:389](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L389) diff --git a/docs/interfaces/Org.md b/docs/interfaces/Org.md index 49f9524..425f043 100644 --- a/docs/interfaces/Org.md +++ b/docs/interfaces/Org.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / Org +[@heroku/applink v1.0.0-ea.1](../README.md) / Org # Interface: Org @@ -20,7 +20,7 @@ The API version the Salesforce organization is currently using. #### Defined in -[src/index.ts:154](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L154) +[src/index.ts:154](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L154) *** @@ -34,7 +34,7 @@ An initialized data API client instance. #### Defined in -[src/index.ts:155](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L155) +[src/index.ts:155](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L155) *** @@ -48,7 +48,7 @@ If instance URL and token are provide, an initialized Data Cloud data API client #### Defined in -[src/index.ts:156](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L156) +[src/index.ts:156](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L156) *** @@ -62,7 +62,7 @@ The domain URL of the Salesforce organization. #### Defined in -[src/index.ts:157](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L157) +[src/index.ts:157](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L157) *** @@ -76,7 +76,7 @@ The Salesforce organization ID. #### Defined in -[src/index.ts:158](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L158) +[src/index.ts:158](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L158) *** @@ -88,7 +88,7 @@ readonly namespace: string; #### Defined in -[src/index.ts:159](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L159) +[src/index.ts:159](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L159) *** @@ -102,7 +102,7 @@ The currently logged in user #### Defined in -[src/index.ts:160](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L160) +[src/index.ts:160](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L160) ## Methods @@ -129,4 +129,4 @@ request( #### Defined in -[src/index.ts:162](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L162) +[src/index.ts:162](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L162) diff --git a/docs/interfaces/QueryJobInfo.md b/docs/interfaces/QueryJobInfo.md index ff9a808..b51f3b5 100644 --- a/docs/interfaces/QueryJobInfo.md +++ b/docs/interfaces/QueryJobInfo.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / QueryJobInfo +[@heroku/applink v1.0.0-ea.1](../README.md) / QueryJobInfo # Interface: QueryJobInfo @@ -30,7 +30,7 @@ asynchronous and batch Apex operations. If there are no triggers, the value is 0 #### Defined in -[src/index.ts:678](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L678) +[src/index.ts:678](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L678) *** @@ -50,7 +50,7 @@ to be processed or the time required for serialization and deserialization. #### Defined in -[src/index.ts:685](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L685) +[src/index.ts:685](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L685) *** @@ -68,7 +68,7 @@ The API version that the job was created in. #### Defined in -[src/index.ts:690](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L690) +[src/index.ts:690](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L690) *** @@ -86,7 +86,7 @@ The ID of an assignment rule to run for a Case or a Lead. #### Defined in -[src/index.ts:771](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L771) +[src/index.ts:771](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L771) *** @@ -104,7 +104,7 @@ The column delimiter used for CSV job data. #### Defined in -[src/index.ts:695](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L695) +[src/index.ts:695](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L695) *** @@ -122,7 +122,7 @@ How the request was processed. #### Defined in -[src/index.ts:700](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L700) +[src/index.ts:700](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L700) *** @@ -140,7 +140,7 @@ The format of the data being processed. Only CSV is supported. #### Defined in -[src/index.ts:705](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L705) +[src/index.ts:705](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L705) *** @@ -158,7 +158,7 @@ The URL to use for Upload job Data requests for this job. Only valid if the job #### Defined in -[src/index.ts:710](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L710) +[src/index.ts:710](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L710) *** @@ -176,7 +176,7 @@ The ID of the user who created the job. #### Defined in -[src/index.ts:715](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L715) +[src/index.ts:715](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L715) *** @@ -194,7 +194,7 @@ The date and time in the UTC time zone when the job was created. #### Defined in -[src/index.ts:720](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L720) +[src/index.ts:720](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L720) *** @@ -212,7 +212,7 @@ The name of the external ID field for an upsert. #### Defined in -[src/index.ts:776](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L776) +[src/index.ts:776](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L776) *** @@ -230,7 +230,7 @@ Unique ID for this job. #### Defined in -[src/index.ts:725](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L725) +[src/index.ts:725](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L725) *** @@ -248,7 +248,7 @@ The job’s type. #### Defined in -[src/index.ts:836](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L836) +[src/index.ts:836](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L836) *** @@ -266,7 +266,7 @@ The line ending used for CSV job data. #### Defined in -[src/index.ts:735](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L735) +[src/index.ts:735](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L735) *** @@ -284,7 +284,7 @@ The number of records that were not processed successfully in this job. #### Defined in -[src/index.ts:781](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L781) +[src/index.ts:781](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L781) *** @@ -302,7 +302,7 @@ The number of records already processed. #### Defined in -[src/index.ts:786](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L786) +[src/index.ts:786](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L786) *** @@ -320,7 +320,7 @@ The object type for the data being processed. #### Defined in -[src/index.ts:740](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L740) +[src/index.ts:740](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L740) *** @@ -338,7 +338,7 @@ The processing operation for the job. #### Defined in -[src/index.ts:841](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L841) +[src/index.ts:841](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L841) *** @@ -357,7 +357,7 @@ operation. The repeated attempts are due to a problem, such as a lock contention #### Defined in -[src/index.ts:751](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L751) +[src/index.ts:751](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L751) *** @@ -375,7 +375,7 @@ The current state of processing for the job. #### Defined in -[src/index.ts:846](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L846) +[src/index.ts:846](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L846) *** @@ -393,7 +393,7 @@ Date and time in the UTC time zone when the job finished. #### Defined in -[src/index.ts:761](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L761) +[src/index.ts:761](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L761) *** @@ -411,4 +411,4 @@ The number of milliseconds taken to process the job. #### Defined in -[src/index.ts:766](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L766) +[src/index.ts:766](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L766) diff --git a/docs/interfaces/QueryJobOptions.md b/docs/interfaces/QueryJobOptions.md index 8071d02..65b9bb0 100644 --- a/docs/interfaces/QueryJobOptions.md +++ b/docs/interfaces/QueryJobOptions.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / QueryJobOptions +[@heroku/applink v1.0.0-ea.1](../README.md) / QueryJobOptions # Interface: QueryJobOptions @@ -22,7 +22,7 @@ operation. If not provided, the default value `query` will be used. #### Defined in -[src/index.ts:621](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L621) +[src/index.ts:621](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L621) *** @@ -36,4 +36,4 @@ The SOQL query to execute #### Defined in -[src/index.ts:615](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L615) +[src/index.ts:615](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L615) diff --git a/docs/interfaces/QueryJobReference.md b/docs/interfaces/QueryJobReference.md index 0972fc2..fc77b0e 100644 --- a/docs/interfaces/QueryJobReference.md +++ b/docs/interfaces/QueryJobReference.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / QueryJobReference +[@heroku/applink v1.0.0-ea.1](../README.md) / QueryJobReference # Interface: QueryJobReference @@ -20,7 +20,7 @@ The id of the query job #### Defined in -[src/index.ts:646](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L646) +[src/index.ts:646](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L646) *** @@ -34,4 +34,4 @@ The type for this reference #### Defined in -[src/index.ts:651](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L651) +[src/index.ts:651](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L651) diff --git a/docs/interfaces/QueryJobResults.md b/docs/interfaces/QueryJobResults.md index faf117b..7cae7a0 100644 --- a/docs/interfaces/QueryJobResults.md +++ b/docs/interfaces/QueryJobResults.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / QueryJobResults +[@heroku/applink v1.0.0-ea.1](../README.md) / QueryJobResults # Interface: QueryJobResults @@ -22,7 +22,7 @@ A data table containing a set of one or more query results. #### Defined in -[src/index.ts:907](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L907) +[src/index.ts:907](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L907) *** @@ -36,7 +36,7 @@ This flag indicates if this is the final set of query results. #### Defined in -[src/index.ts:912](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L912) +[src/index.ts:912](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L912) *** @@ -50,7 +50,7 @@ The reference of the query job this result set belongs to. #### Defined in -[src/index.ts:927](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L927) +[src/index.ts:927](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L927) *** @@ -64,7 +64,7 @@ A string that identifies a specific set of query results. Providing a value for #### Defined in -[src/index.ts:917](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L917) +[src/index.ts:917](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L917) *** @@ -78,4 +78,4 @@ The number of records in this set. #### Defined in -[src/index.ts:922](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L922) +[src/index.ts:922](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L922) diff --git a/docs/interfaces/RecordModificationResult.md b/docs/interfaces/RecordModificationResult.md index 0c6ae1f..88c4eb6 100644 --- a/docs/interfaces/RecordModificationResult.md +++ b/docs/interfaces/RecordModificationResult.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / RecordModificationResult +[@heroku/applink v1.0.0-ea.1](../README.md) / RecordModificationResult # Interface: RecordModificationResult @@ -20,4 +20,4 @@ The ID of the modified record. #### Defined in -[src/index.ts:212](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L212) +[src/index.ts:212](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L212) diff --git a/docs/interfaces/RecordQueryResult.md b/docs/interfaces/RecordQueryResult.md index b2148eb..a82a79f 100644 --- a/docs/interfaces/RecordQueryResult.md +++ b/docs/interfaces/RecordQueryResult.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / RecordQueryResult +[@heroku/applink v1.0.0-ea.1](../README.md) / RecordQueryResult # Interface: RecordQueryResult @@ -21,7 +21,7 @@ If false, one or more records remain to be retrieved. #### Defined in -[src/index.ts:174](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L174) +[src/index.ts:174](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L174) *** @@ -35,7 +35,7 @@ The URL for the next set of records, if any. #### Defined in -[src/index.ts:177](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L177) +[src/index.ts:177](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L177) *** @@ -49,7 +49,7 @@ The records in this query result #### Defined in -[src/index.ts:176](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L176) +[src/index.ts:176](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L176) *** @@ -63,4 +63,4 @@ The total amount of records returned by the query. #### Defined in -[src/index.ts:175](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L175) +[src/index.ts:175](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L175) diff --git a/docs/interfaces/ReferenceId.md b/docs/interfaces/ReferenceId.md index a6a92a0..ea72d71 100644 --- a/docs/interfaces/ReferenceId.md +++ b/docs/interfaces/ReferenceId.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / ReferenceId +[@heroku/applink v1.0.0-ea.1](../README.md) / ReferenceId # Interface: ReferenceId @@ -28,7 +28,7 @@ A string reference to a record id #### Defined in -[src/index.ts:234](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L234) +[src/index.ts:234](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L234) *** @@ -49,4 +49,4 @@ A string identifier #### Defined in -[src/index.ts:226](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L226) +[src/index.ts:226](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L226) diff --git a/docs/interfaces/UnitOfWork.md b/docs/interfaces/UnitOfWork.md index 7a59cec..b0821b8 100644 --- a/docs/interfaces/UnitOfWork.md +++ b/docs/interfaces/UnitOfWork.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / UnitOfWork +[@heroku/applink v1.0.0-ea.1](../README.md) / UnitOfWork # Interface: UnitOfWork @@ -33,7 +33,7 @@ The ReferenceId for the created record. #### Defined in -[src/index.ts:279](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L279) +[src/index.ts:279](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L279) *** @@ -63,7 +63,7 @@ The ReferenceId for the deleted record. #### Defined in -[src/index.ts:297](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L297) +[src/index.ts:297](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L297) *** @@ -90,4 +90,4 @@ The ReferenceId for the updated record. #### Defined in -[src/index.ts:288](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L288) +[src/index.ts:288](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L288) diff --git a/docs/interfaces/User.md b/docs/interfaces/User.md index 2fbbd22..13aafa4 100644 --- a/docs/interfaces/User.md +++ b/docs/interfaces/User.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / User +[@heroku/applink v1.0.0-ea.1](../README.md) / User # Interface: User @@ -20,7 +20,7 @@ The user's ID. #### Defined in -[src/index.ts:369](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L369) +[src/index.ts:369](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L369) *** @@ -34,4 +34,4 @@ The name of the user. #### Defined in -[src/index.ts:370](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L370) +[src/index.ts:370](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L370) diff --git a/docs/type-aliases/DataTableFieldValueExtractor.md b/docs/type-aliases/DataTableFieldValueExtractor.md index c25359b..ca0f967 100644 --- a/docs/type-aliases/DataTableFieldValueExtractor.md +++ b/docs/type-aliases/DataTableFieldValueExtractor.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / DataTableFieldValueExtractor +[@heroku/applink v1.0.0-ea.1](../README.md) / DataTableFieldValueExtractor # Type Alias: DataTableFieldValueExtractor()\ @@ -33,4 +33,4 @@ the type of the object to extract row data from ## Defined in -[src/index.ts:949](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L949) +[src/index.ts:949](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L949) diff --git a/docs/type-aliases/IngestJobOperation.md b/docs/type-aliases/IngestJobOperation.md index 7b8b6df..188dd27 100644 --- a/docs/type-aliases/IngestJobOperation.md +++ b/docs/type-aliases/IngestJobOperation.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / IngestJobOperation +[@heroku/applink v1.0.0-ea.1](../README.md) / IngestJobOperation # Type Alias: IngestJobOperation @@ -19,4 +19,4 @@ The processing operation for an ingest job. ## Defined in -[src/index.ts:884](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L884) +[src/index.ts:884](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L884) diff --git a/docs/type-aliases/IngestJobState.md b/docs/type-aliases/IngestJobState.md index a1d89bc..89263ce 100644 --- a/docs/type-aliases/IngestJobState.md +++ b/docs/type-aliases/IngestJobState.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / IngestJobState +[@heroku/applink v1.0.0-ea.1](../README.md) / IngestJobState # Type Alias: IngestJobState @@ -26,4 +26,4 @@ The state of processing for an ingest job. Values include: ## Defined in -[src/index.ts:858](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L858) +[src/index.ts:858](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L858) diff --git a/docs/type-aliases/QueriedRecord.md b/docs/type-aliases/QueriedRecord.md index b28df44..3b51a66 100644 --- a/docs/type-aliases/QueriedRecord.md +++ b/docs/type-aliases/QueriedRecord.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / QueriedRecord +[@heroku/applink v1.0.0-ea.1](../README.md) / QueriedRecord # Type Alias: QueriedRecord @@ -28,4 +28,4 @@ Returns the result of a sub query related to this record. Records can have sub q ## Defined in -[src/index.ts:197](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L197) +[src/index.ts:197](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L197) diff --git a/docs/type-aliases/QueryJobOperation.md b/docs/type-aliases/QueryJobOperation.md index 6fc0626..5e8a6fe 100644 --- a/docs/type-aliases/QueryJobOperation.md +++ b/docs/type-aliases/QueryJobOperation.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / QueryJobOperation +[@heroku/applink v1.0.0-ea.1](../README.md) / QueryJobOperation # Type Alias: QueryJobOperation @@ -16,4 +16,4 @@ The processing operation for a query job. Possible values are: ## Defined in -[src/index.ts:896](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L896) +[src/index.ts:896](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L896) diff --git a/docs/type-aliases/QueryJobState.md b/docs/type-aliases/QueryJobState.md index 821724c..4b0f54a 100644 --- a/docs/type-aliases/QueryJobState.md +++ b/docs/type-aliases/QueryJobState.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / QueryJobState +[@heroku/applink v1.0.0-ea.1](../README.md) / QueryJobState # Type Alias: QueryJobState @@ -24,4 +24,4 @@ The state of processing for an query job. Values include: ## Defined in -[src/index.ts:874](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L874) +[src/index.ts:874](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L874) diff --git a/docs/type-aliases/Record.md b/docs/type-aliases/Record.md index 1dfe1cd..5d7d6f1 100644 --- a/docs/type-aliases/Record.md +++ b/docs/type-aliases/Record.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / Record +[@heroku/applink v1.0.0-ea.1](../README.md) / Record # Type Alias: Record @@ -42,4 +42,4 @@ readonly type: string; ## Defined in -[src/index.ts:188](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L188) +[src/index.ts:188](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L188) diff --git a/docs/type-aliases/RecordForCreate.md b/docs/type-aliases/RecordForCreate.md index 1ec6b99..833b56e 100644 --- a/docs/type-aliases/RecordForCreate.md +++ b/docs/type-aliases/RecordForCreate.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / RecordForCreate +[@heroku/applink v1.0.0-ea.1](../README.md) / RecordForCreate # Type Alias: RecordForCreate @@ -43,4 +43,4 @@ type: string; ## Defined in -[src/index.ts:245](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L245) +[src/index.ts:245](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L245) diff --git a/docs/type-aliases/RecordForUpdate.md b/docs/type-aliases/RecordForUpdate.md index 148ac14..b1ecd17 100644 --- a/docs/type-aliases/RecordForUpdate.md +++ b/docs/type-aliases/RecordForUpdate.md @@ -1,8 +1,8 @@ -[**@heroku/applink v1.0.0-ea.0**](../README.md) • **Docs** +[**@heroku/applink v1.0.0-ea.1**](../README.md) • **Docs** *** -[@heroku/applink v1.0.0-ea.0](../README.md) / RecordForUpdate +[@heroku/applink v1.0.0-ea.1](../README.md) / RecordForUpdate # Type Alias: RecordForUpdate @@ -49,4 +49,4 @@ type: string; ## Defined in -[src/index.ts:259](https://github.com/heroku/heroku-applink-nodejs/blob/87c92510086d403ff167f2c2ca165bec2e25023f/src/index.ts#L259) +[src/index.ts:259](https://github.com/heroku/heroku-applink-nodejs/blob/2642d389dda315880ee5a3612d84ccbd71f43b77/src/index.ts#L259) diff --git a/package.json b/package.json index 136fc17..c30a2a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@heroku/applink", - "version": "1.0.0-ea.0", + "version": "1.0.0-ea.1", "description": "Applink SDK for Heroku Apps.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/utils/request.ts b/src/utils/request.ts index dbc903f..03f9ea3 100644 --- a/src/utils/request.ts +++ b/src/utils/request.ts @@ -5,9 +5,6 @@ * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ -import fs from "fs"; -import path from "path"; - /** Error thrown by the SDK when receiving non-2xx responses on HTTP requests. */ export class HTTPResponseError extends Error { response: any;