sim-setup 1.0.6-preview.70.1 → 1.0.6-preview.72.1

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.
Files changed (2) hide show
  1. package/dist/index.js +168 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -21012,6 +21012,173 @@ var init_integrations = __esm(() => {
21012
21012
  integrationType: "documents",
21013
21013
  tags: ["cloud", "automation"]
21014
21014
  },
21015
+ {
21016
+ type: "sailpoint",
21017
+ slug: "sailpoint",
21018
+ name: "SailPoint",
21019
+ description: "Govern identities and access in SailPoint Identity Security Cloud",
21020
+ longDescription: "Read and act on identity-governance data in SailPoint Identity Security Cloud (ISC) with a Personal Access Token (PAT) exchanged through OAuth2 client credentials at https://TENANT.api.identitynow.com/oauth/token. SailPoint versions each service independently, so the integration uses the current service paths such as /search/v1, /identities/v1, and /access-requests/v1; there is no shared annual API-version setting. Use a PAT whose owner has the ISC user level required by each endpoint because many identity, role, access-profile, certification, approval, and access-request operations require user context in addition to scopes. Common read scopes are sp:search:read, idn:identity:read, idn:accounts:read, idn:entitlement:read, idn:role-unchecked:read or idn:role-checked:read, idn:access-profile:read, idn:sources:read, idn:campaign:read, idn:access-request-status:read, idn:task-management:read, and idn:access-request-approvals:read. Mutations additionally require idn:sources:manage for account aggregation, idn:entitlement:manage for entitlement aggregation, idn:campaign:manage for certification decisions and sign-off, idn:access-request:manage or idn:access-request-self:manage for access requests as permitted, and idn:access-request-approvals:manage for approval actions. A scope alone does not grant authority beyond the PAT owner's ISC permissions, and authorization failures may be returned as provider errors or filtered visibility depending on the endpoint and tenant policy.",
21021
+ bgColor: "#0033A1",
21022
+ iconName: "SailPointIcon",
21023
+ docsUrl: "https://docs.sim.ai/integrations/sailpoint",
21024
+ operations: [
21025
+ {
21026
+ name: "Search",
21027
+ description: "Search current SailPoint indices with every documented search query mode."
21028
+ },
21029
+ {
21030
+ name: "Search Count",
21031
+ description: "Count documents matching a complete SailPoint search body."
21032
+ },
21033
+ {
21034
+ name: "Search Aggregate",
21035
+ description: "Run an Elasticsearch DSL or SailPoint aggregation over current search indices."
21036
+ },
21037
+ {
21038
+ name: "List Identities",
21039
+ description: "List identities with documented filtering, sorting, and pagination."
21040
+ },
21041
+ {
21042
+ name: "Get Identity",
21043
+ description: "Get an identity from the current /identities/v1 service by ID."
21044
+ },
21045
+ {
21046
+ name: "List Accounts",
21047
+ description: "List accounts with documented filtering, sorting, detail, and pagination."
21048
+ },
21049
+ {
21050
+ name: "Get Account",
21051
+ description: "Get an account from the current /accounts/v1 service by ID."
21052
+ },
21053
+ {
21054
+ name: "Get Account Entitlements",
21055
+ description: "List entitlements granted to one account."
21056
+ },
21057
+ {
21058
+ name: "List Entitlements",
21059
+ description: "List entitlements with current segmentation, cursor, filter, and page controls."
21060
+ },
21061
+ {
21062
+ name: "Get Entitlement",
21063
+ description: "Get an entitlement by ID."
21064
+ },
21065
+ {
21066
+ name: "List Identity Entitlements",
21067
+ description: "List tagged entitlement references held by one identity."
21068
+ },
21069
+ {
21070
+ name: "List Roles",
21071
+ description: "List roles with current visibility, segmentation, filtering, and pagination controls."
21072
+ },
21073
+ {
21074
+ name: "Get Role",
21075
+ description: "Get a role by ID."
21076
+ },
21077
+ {
21078
+ name: "Get Role Entitlements",
21079
+ description: "List entitlements in one role using the current non-experimental roles service."
21080
+ },
21081
+ {
21082
+ name: "List Access Profiles",
21083
+ description: "List access profiles with current visibility and segmentation controls."
21084
+ },
21085
+ {
21086
+ name: "Get Access Profile",
21087
+ description: "Get an access profile by ID."
21088
+ },
21089
+ {
21090
+ name: "Get Access Profile Entitlements",
21091
+ description: "List entitlements in one access profile."
21092
+ },
21093
+ {
21094
+ name: "List Sources",
21095
+ description: "List identity sources with visibility, filtering, sorting, and pagination controls."
21096
+ },
21097
+ {
21098
+ name: "Get Source",
21099
+ description: "Get an identity source by ID."
21100
+ },
21101
+ {
21102
+ name: "List Account Activities",
21103
+ description: "List provisioning activities with identity, filter, sort, and page controls."
21104
+ },
21105
+ {
21106
+ name: "Get Account Activity",
21107
+ description: "Get an account activity by ID."
21108
+ },
21109
+ {
21110
+ name: "List Campaigns",
21111
+ description: "List certification campaigns with detail, filtering, sorting, and pagination."
21112
+ },
21113
+ {
21114
+ name: "Get Campaign",
21115
+ description: "Get a certification campaign by ID."
21116
+ },
21117
+ {
21118
+ name: "List Certifications",
21119
+ description: "List identity certifications assigned to a reviewer."
21120
+ },
21121
+ {
21122
+ name: "Get Certification",
21123
+ description: "Get an identity certification by ID."
21124
+ },
21125
+ {
21126
+ name: "List Certification Review Items",
21127
+ description: "List access-review items in one identity certification."
21128
+ },
21129
+ {
21130
+ name: "Decide Certification Review Items",
21131
+ description: "Approve or revoke 1-250 review items in an identity certification."
21132
+ },
21133
+ {
21134
+ name: "Sign Off Certification",
21135
+ description: "Sign off a completed identity certification."
21136
+ },
21137
+ {
21138
+ name: "Request Access",
21139
+ description: "Submit a current human or machine identity access request."
21140
+ },
21141
+ {
21142
+ name: "Cancel Access Request",
21143
+ description: "Cancel an access request that has not passed approval."
21144
+ },
21145
+ {
21146
+ name: "Get Access Request Status",
21147
+ description: "List requested-item status records for access requests."
21148
+ },
21149
+ {
21150
+ name: "List Pending Access Request Approvals",
21151
+ description: "List pending access-request approvals visible to the caller."
21152
+ },
21153
+ {
21154
+ name: "Approve Access Request",
21155
+ description: "Approve one pending access-request approval."
21156
+ },
21157
+ {
21158
+ name: "Reject Access Request",
21159
+ description: "Reject one pending access-request approval with a reviewer comment."
21160
+ },
21161
+ {
21162
+ name: "Load Accounts (CSV)",
21163
+ description: "Start account aggregation for a source, optionally using a CSV file."
21164
+ },
21165
+ {
21166
+ name: "Load Entitlements (CSV)",
21167
+ description: "Start entitlement aggregation for a source, optionally using a CSV file."
21168
+ },
21169
+ {
21170
+ name: "Get Task Status",
21171
+ description: "Get the current status of a SailPoint background task by ID."
21172
+ }
21173
+ ],
21174
+ operationCount: 37,
21175
+ triggers: [],
21176
+ triggerCount: 0,
21177
+ authType: "api-key",
21178
+ category: "tools",
21179
+ integrationType: "security",
21180
+ tags: ["identity", "automation"]
21181
+ },
21015
21182
  {
21016
21183
  type: "salesforce",
21017
21184
  slug: "salesforce",
@@ -26609,7 +26776,7 @@ var init_integrations = __esm(() => {
26609
26776
  operations: [
26610
26777
  {
26611
26778
  name: "List Items",
26612
- description: "List all items from a Webflow CMS collection"
26779
+ description: "List items from a Webflow CMS collection"
26613
26780
  },
26614
26781
  {
26615
26782
  name: "Get Item",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-setup",
3
- "version": "1.0.6-preview.70.1",
3
+ "version": "1.0.6-preview.72.1",
4
4
  "description": "Set up and manage a self-hosted Sim installation",
5
5
  "type": "module",
6
6
  "bin": {