sailpoint-api-client 2.0.13 → 2.0.15
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/machine_identities/api.d.ts +1220 -44
- package/dist/machine_identities/api.js +885 -44
- package/dist/machine_identities/api.js.map +1 -1
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/org_config/api.d.ts +6 -0
- package/dist/org_config/api.js.map +1 -1
- package/dist/workflows/api.d.ts +8 -4
- package/dist/workflows/api.js +8 -4
- package/dist/workflows/api.js.map +1 -1
- package/machine_identities/.openapi-generator/FILES +17 -0
- package/machine_identities/api.ts +1659 -44
- package/machine_identities/docs/Examples/typescript_code_examples_overlay.yaml +146 -0
- package/machine_identities/docs/Methods/MachineIdentitiesApi.md +382 -0
- package/machine_identities/docs/Models/ArrayInner.md +18 -0
- package/machine_identities/docs/Models/Businessapplicationref.md +23 -0
- package/machine_identities/docs/Models/Correlationcondition.md +24 -0
- package/machine_identities/docs/Models/Correlationconfig.md +26 -0
- package/machine_identities/docs/Models/Correlationrule.md +24 -0
- package/machine_identities/docs/Models/Correlationruleaction.md +20 -0
- package/machine_identities/docs/Models/Jsonpatchoperation.md +21 -0
- package/machine_identities/docs/Models/JsonpatchoperationValue.md +18 -0
- package/machine_identities/docs/Models/MachineIdentityV2Risk.md +20 -0
- package/machine_identities/docs/Models/MachineIdentityV2Source.md +21 -0
- package/machine_identities/docs/Models/Machineidentityownersv2.md +20 -0
- package/machine_identities/docs/Models/Machineidentityownersv2Primary.md +21 -0
- package/machine_identities/docs/Models/Machineidentityv2.md +42 -0
- package/machine_identities/docs/Models/Resourcev2.md +22 -0
- package/machine_identities/docs/Models/Sanctionedstatus.md +23 -0
- package/machine_identities/docs/Models/Userentitlementv2.md +22 -0
- package/machine_identities/docs/Models/Userentitlementv2Source.md +21 -0
- 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/org_config/api.ts +6 -0
- package/org_config/docs/Models/Orgconfig.md +3 -2
- package/package.json +1 -1
- package/workflows/api.ts +8 -4
- package/workflows/docs/Methods/WorkflowsApi.md +4 -1
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
.gitignore
|
|
2
2
|
.npmignore
|
|
3
3
|
.openapi-generator-ignore
|
|
4
|
+
ArrayInner.md
|
|
4
5
|
Basecommondto.md
|
|
5
6
|
Basereferencedto.md
|
|
7
|
+
Businessapplicationref.md
|
|
8
|
+
Correlationcondition.md
|
|
9
|
+
Correlationconfig.md
|
|
10
|
+
Correlationrule.md
|
|
11
|
+
Correlationruleaction.md
|
|
6
12
|
Dtotype.md
|
|
7
13
|
Errormessagedto.md
|
|
8
14
|
Errorresponsedto.md
|
|
9
15
|
Index.md
|
|
16
|
+
Jsonpatchoperation.md
|
|
17
|
+
JsonpatchoperationValue.md
|
|
10
18
|
ListMachineIdentitiesV1401Response.md
|
|
11
19
|
ListMachineIdentitiesV1429Response.md
|
|
12
20
|
Localeorigin.md
|
|
@@ -16,20 +24,29 @@ MachineIdentitiesApideveloperSite_code_examples.yaml
|
|
|
16
24
|
MachineIdentityDtoOwners.md
|
|
17
25
|
MachineIdentityRequestUserEntitlements.md
|
|
18
26
|
MachineIdentityResponseUserEntitlements.md
|
|
27
|
+
MachineIdentityV2Risk.md
|
|
28
|
+
MachineIdentityV2Source.md
|
|
19
29
|
Machineidentity.md
|
|
20
30
|
Machineidentityaggregationrequest.md
|
|
21
31
|
Machineidentityaggregationresponse.md
|
|
22
32
|
MachineidentityaggregationresponseTarget.md
|
|
33
|
+
Machineidentityownersv2.md
|
|
34
|
+
Machineidentityownersv2Primary.md
|
|
23
35
|
Machineidentityrequest.md
|
|
24
36
|
Machineidentityresponse.md
|
|
25
37
|
Machineidentityuserentitlementresponse.md
|
|
26
38
|
MachineidentityuserentitlementresponseEntitlement.md
|
|
27
39
|
MachineidentityuserentitlementresponseSource.md
|
|
40
|
+
Machineidentityv2.md
|
|
28
41
|
README.md
|
|
42
|
+
Resourcev2.md
|
|
43
|
+
Sanctionedstatus.md
|
|
29
44
|
Taskdefinitionsummary.md
|
|
30
45
|
Taskreturndetails.md
|
|
31
46
|
Taskstatusmessage.md
|
|
32
47
|
TaskstatusmessageParametersInner.md
|
|
48
|
+
Userentitlementv2.md
|
|
49
|
+
Userentitlementv2Source.md
|
|
33
50
|
api.ts
|
|
34
51
|
base.ts
|
|
35
52
|
common.ts
|