@sailpoint/connector-sdk 0.1.1 → 1.0.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/README.md +1 -1
- package/dist/lib/connector.d.ts +1 -1
- package/dist/lib/connector.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/lib/connector.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Writable } from 'stream';
|
|
|
5
5
|
* Connector to build by attaching handlers for supported commands.
|
|
6
6
|
*/
|
|
7
7
|
export declare class Connector {
|
|
8
|
-
static readonly SDK_VERSION =
|
|
8
|
+
static readonly SDK_VERSION = 1;
|
|
9
9
|
private readonly _sdkVersion;
|
|
10
10
|
private readonly _handlers;
|
|
11
11
|
constructor();
|
package/dist/lib/connector.js
CHANGED
|
@@ -6,7 +6,7 @@ const connector_spec_1 = require("./connector-spec");
|
|
|
6
6
|
const commands_1 = require("./commands");
|
|
7
7
|
const response_1 = require("./response");
|
|
8
8
|
const async_context_1 = require("./async-context");
|
|
9
|
-
const SDK_VERSION =
|
|
9
|
+
const SDK_VERSION = 1;
|
|
10
10
|
/**
|
|
11
11
|
* Connector to build by attaching handlers for supported commands.
|
|
12
12
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sailpoint/connector-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "JavaScript framework to build SailPoint Connectors",
|
|
5
5
|
"author": "SailPoint Technologies, Inc.",
|
|
6
6
|
"license": "Copyright (c) 2023. SailPoint Technologies, Inc. All rights reserved.",
|