sailpoint-api-client 2.0.7 → 2.0.9
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/dist/index.d.ts +0 -3
- package/dist/index.js +98 -101
- package/dist/index.js.map +1 -1
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/index.ts +0 -3
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/dist/prompt_insights/api.d.ts +0 -367
- package/dist/prompt_insights/api.js +0 -349
- package/dist/prompt_insights/api.js.map +0 -1
- package/dist/prompt_insights/base.d.ts +0 -66
- package/dist/prompt_insights/base.js +0 -90
- package/dist/prompt_insights/base.js.map +0 -1
- package/dist/prompt_insights/common.d.ts +0 -65
- package/dist/prompt_insights/common.js +0 -292
- package/dist/prompt_insights/common.js.map +0 -1
- package/dist/prompt_insights/configuration.d.ts +0 -91
- package/dist/prompt_insights/configuration.js +0 -46
- package/dist/prompt_insights/configuration.js.map +0 -1
- package/dist/prompt_insights/index.d.ts +0 -13
- package/dist/prompt_insights/index.js +0 -32
- package/dist/prompt_insights/index.js.map +0 -1
- package/prompt_insights/.openapi-generator/FILES +0 -23
- package/prompt_insights/.openapi-generator/VERSION +0 -1
- package/prompt_insights/.openapi-generator-ignore +0 -23
- package/prompt_insights/.sdk-partition +0 -1
- package/prompt_insights/api.ts +0 -497
- package/prompt_insights/base.ts +0 -86
- package/prompt_insights/common.ts +0 -183
- package/prompt_insights/configuration.ts +0 -110
- package/prompt_insights/docs/Examples/typescript_code_examples_overlay.yaml +0 -31
- package/prompt_insights/docs/Methods/Index.md +0 -30
- package/prompt_insights/docs/Methods/PromptInsightsApi.md +0 -109
- package/prompt_insights/docs/Models/Errormessagedto.md +0 -21
- package/prompt_insights/docs/Models/Errorresponsedto.md +0 -22
- package/prompt_insights/docs/Models/GetPromptInsightsMetricsV1401Response.md +0 -19
- package/prompt_insights/docs/Models/GetPromptInsightsMetricsV1429Response.md +0 -19
- package/prompt_insights/docs/Models/Index.md +0 -19
- package/prompt_insights/docs/Models/Localeorigin.md +0 -21
- package/prompt_insights/docs/Models/Promptinsight.md +0 -27
- package/prompt_insights/docs/Models/Promptinsightsmetrics.md +0 -20
- package/prompt_insights/docs/Models/README.md +0 -46
- package/prompt_insights/git_push.sh +0 -57
- package/prompt_insights/index.ts +0 -18
- package/prompt_insights/package.json +0 -34
- package/prompt_insights/tsconfig.json +0 -21
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
## sailpoint-api-client@1.0.0
|
|
2
|
-
|
|
3
|
-
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
|
-
|
|
5
|
-
Environment
|
|
6
|
-
* Node.js
|
|
7
|
-
* Webpack
|
|
8
|
-
* Browserify
|
|
9
|
-
|
|
10
|
-
Language level
|
|
11
|
-
* ES5 - you must have a Promises/A+ library installed
|
|
12
|
-
* ES6
|
|
13
|
-
|
|
14
|
-
Module system
|
|
15
|
-
* CommonJS
|
|
16
|
-
* ES6 module system
|
|
17
|
-
|
|
18
|
-
It can be used in both TypeScript and JavaScript. In TypeScript, the definition will be automatically resolved via `package.json`. ([Reference](https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html))
|
|
19
|
-
|
|
20
|
-
### Building
|
|
21
|
-
|
|
22
|
-
To build and compile the typescript sources to javascript use:
|
|
23
|
-
```
|
|
24
|
-
npm install
|
|
25
|
-
npm run build
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
### Publishing
|
|
29
|
-
|
|
30
|
-
First build the package then run `npm publish`
|
|
31
|
-
|
|
32
|
-
### Consuming
|
|
33
|
-
|
|
34
|
-
navigate to the folder of your consuming project and run one of the following commands.
|
|
35
|
-
|
|
36
|
-
_published:_
|
|
37
|
-
|
|
38
|
-
```
|
|
39
|
-
npm install sailpoint-api-client@1.0.0 --save
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
_unPublished (not recommended):_
|
|
43
|
-
|
|
44
|
-
```
|
|
45
|
-
npm install PATH_TO_GENERATED_PACKAGE --save
|
|
46
|
-
```
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
|
|
3
|
-
#
|
|
4
|
-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com"
|
|
5
|
-
|
|
6
|
-
git_user_id=$1
|
|
7
|
-
git_repo_id=$2
|
|
8
|
-
release_note=$3
|
|
9
|
-
git_host=$4
|
|
10
|
-
|
|
11
|
-
if [ "$git_host" = "" ]; then
|
|
12
|
-
git_host="github.com"
|
|
13
|
-
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
|
|
14
|
-
fi
|
|
15
|
-
|
|
16
|
-
if [ "$git_user_id" = "" ]; then
|
|
17
|
-
git_user_id="GIT_USER_ID"
|
|
18
|
-
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
|
|
19
|
-
fi
|
|
20
|
-
|
|
21
|
-
if [ "$git_repo_id" = "" ]; then
|
|
22
|
-
git_repo_id="GIT_REPO_ID"
|
|
23
|
-
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
|
|
24
|
-
fi
|
|
25
|
-
|
|
26
|
-
if [ "$release_note" = "" ]; then
|
|
27
|
-
release_note="Minor update"
|
|
28
|
-
echo "[INFO] No command line input provided. Set \$release_note to $release_note"
|
|
29
|
-
fi
|
|
30
|
-
|
|
31
|
-
# Initialize the local directory as a Git repository
|
|
32
|
-
git init
|
|
33
|
-
|
|
34
|
-
# Adds the files in the local repository and stages them for commit.
|
|
35
|
-
git add .
|
|
36
|
-
|
|
37
|
-
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
|
38
|
-
git commit -m "$release_note"
|
|
39
|
-
|
|
40
|
-
# Sets the new remote
|
|
41
|
-
git_remote=$(git remote)
|
|
42
|
-
if [ "$git_remote" = "" ]; then # git remote not defined
|
|
43
|
-
|
|
44
|
-
if [ "$GIT_TOKEN" = "" ]; then
|
|
45
|
-
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
|
|
46
|
-
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
|
|
47
|
-
else
|
|
48
|
-
git remote add origin https://${git_user_id}:"${GIT_TOKEN}"@${git_host}/${git_user_id}/${git_repo_id}.git
|
|
49
|
-
fi
|
|
50
|
-
|
|
51
|
-
fi
|
|
52
|
-
|
|
53
|
-
git pull origin master
|
|
54
|
-
|
|
55
|
-
# Pushes (Forces) the changes in the local repository up to the remote repository
|
|
56
|
-
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
|
|
57
|
-
git push origin master 2>&1 | grep -v 'To https'
|
package/prompt_insights/index.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Identity Security Cloud API - Prompt Insights
|
|
5
|
-
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: v1
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
export * from "./api";
|
|
17
|
-
export * from "../configuration";
|
|
18
|
-
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "sailpoint-api-client",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"description": "OpenAPI client for sailpoint-api-client",
|
|
5
|
-
"author": "OpenAPI-Generator Contributors",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "https://github.com/GIT_USER_ID/GIT_REPO_ID.git"
|
|
9
|
-
},
|
|
10
|
-
"keywords": [
|
|
11
|
-
"axios",
|
|
12
|
-
"typescript",
|
|
13
|
-
"openapi-client",
|
|
14
|
-
"openapi-generator",
|
|
15
|
-
"sailpoint-api-client"
|
|
16
|
-
],
|
|
17
|
-
"license": "Unlicense",
|
|
18
|
-
"main": "./dist/index.js",
|
|
19
|
-
"typings": "./dist/index.d.ts",
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsc",
|
|
22
|
-
"prepare": "npm run build"
|
|
23
|
-
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"axios": "^1.6.1"
|
|
26
|
-
},
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
"@types/node": "12.11.5 - 12.20.42",
|
|
29
|
-
"typescript": "^4.0 || ^5.0"
|
|
30
|
-
},
|
|
31
|
-
"publishConfig": {
|
|
32
|
-
"registry": "sailpoint.com"
|
|
33
|
-
}
|
|
34
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"declaration": true,
|
|
4
|
-
"target": "ES5",
|
|
5
|
-
"module": "commonjs",
|
|
6
|
-
"noImplicitAny": true,
|
|
7
|
-
"outDir": "dist",
|
|
8
|
-
"rootDir": ".",
|
|
9
|
-
"lib": [
|
|
10
|
-
"es6",
|
|
11
|
-
"dom"
|
|
12
|
-
],
|
|
13
|
-
"typeRoots": [
|
|
14
|
-
"node_modules/@types"
|
|
15
|
-
]
|
|
16
|
-
},
|
|
17
|
-
"exclude": [
|
|
18
|
-
"dist",
|
|
19
|
-
"node_modules"
|
|
20
|
-
]
|
|
21
|
-
}
|