sailpoint-api-client 1.8.3 → 1.8.4
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/beta/README.md +2 -2
- package/beta/api.ts +237 -54
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +236 -53
- package/dist/beta/api.js +9 -14
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +241 -58
- package/dist/v2024/api.js +20 -27
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +245 -62
- package/dist/v2025/api.js +24 -31
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/common.js +2 -2
- package/dist/v3/common.js +2 -2
- 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/v2024/README.md +2 -2
- package/v2024/api.ts +249 -69
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +253 -73
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.4
|
|
2
2
|
|
|
3
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
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.8.
|
|
39
|
+
npm install sailpoint-sdk@1.8.4 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/api.ts
CHANGED
|
@@ -9758,11 +9758,17 @@ export interface DkimAttributesBeta {
|
|
|
9758
9758
|
*/
|
|
9759
9759
|
'dkimTokens'?: Array<string>;
|
|
9760
9760
|
/**
|
|
9761
|
-
* The current status if the domain /identity has been verified. Ie
|
|
9761
|
+
* The current status if the domain /identity has been verified. Ie SUCCESS, FAILED, PENDING
|
|
9762
9762
|
* @type {string}
|
|
9763
9763
|
* @memberof DkimAttributesBeta
|
|
9764
9764
|
*/
|
|
9765
9765
|
'dkimVerificationStatus'?: string;
|
|
9766
|
+
/**
|
|
9767
|
+
* The AWS SES region the domain is associated with
|
|
9768
|
+
* @type {string}
|
|
9769
|
+
* @memberof DkimAttributesBeta
|
|
9770
|
+
*/
|
|
9771
|
+
'region'?: string;
|
|
9766
9772
|
}
|
|
9767
9773
|
/**
|
|
9768
9774
|
*
|
|
@@ -9797,10 +9803,10 @@ export interface DomainStatusDtoBeta {
|
|
|
9797
9803
|
'domain'?: string;
|
|
9798
9804
|
/**
|
|
9799
9805
|
* DKIM is enabled for this domain
|
|
9800
|
-
* @type {
|
|
9806
|
+
* @type {boolean}
|
|
9801
9807
|
* @memberof DomainStatusDtoBeta
|
|
9802
9808
|
*/
|
|
9803
|
-
'dkimEnabled'?:
|
|
9809
|
+
'dkimEnabled'?: boolean;
|
|
9804
9810
|
/**
|
|
9805
9811
|
* DKIM tokens required for authentication
|
|
9806
9812
|
* @type {Array<string>}
|
|
@@ -9813,6 +9819,12 @@ export interface DomainStatusDtoBeta {
|
|
|
9813
9819
|
* @memberof DomainStatusDtoBeta
|
|
9814
9820
|
*/
|
|
9815
9821
|
'dkimVerificationStatus'?: string;
|
|
9822
|
+
/**
|
|
9823
|
+
* The AWS SES region the domain is associated with
|
|
9824
|
+
* @type {string}
|
|
9825
|
+
* @memberof DomainStatusDtoBeta
|
|
9826
|
+
*/
|
|
9827
|
+
'region'?: string;
|
|
9816
9828
|
}
|
|
9817
9829
|
/**
|
|
9818
9830
|
* An enumeration of the types of DTOs supported within the IdentityNow infrastructure.
|
|
@@ -9937,35 +9949,42 @@ export interface EmailNotificationOptionBeta {
|
|
|
9937
9949
|
*/
|
|
9938
9950
|
export interface EmailStatusDtoBeta {
|
|
9939
9951
|
/**
|
|
9940
|
-
*
|
|
9952
|
+
* Unique identifier for the verified sender address
|
|
9941
9953
|
* @type {string}
|
|
9942
9954
|
* @memberof EmailStatusDtoBeta
|
|
9943
9955
|
*/
|
|
9944
9956
|
'id'?: string | null;
|
|
9945
9957
|
/**
|
|
9946
|
-
*
|
|
9958
|
+
* The verified sender email address
|
|
9947
9959
|
* @type {string}
|
|
9948
9960
|
* @memberof EmailStatusDtoBeta
|
|
9949
9961
|
*/
|
|
9950
9962
|
'email'?: string;
|
|
9951
9963
|
/**
|
|
9952
|
-
*
|
|
9964
|
+
* Whether the sender address is verified by domain
|
|
9953
9965
|
* @type {boolean}
|
|
9954
9966
|
* @memberof EmailStatusDtoBeta
|
|
9955
9967
|
*/
|
|
9956
9968
|
'isVerifiedByDomain'?: boolean;
|
|
9957
9969
|
/**
|
|
9958
|
-
*
|
|
9970
|
+
* The verification status of the sender address
|
|
9959
9971
|
* @type {string}
|
|
9960
9972
|
* @memberof EmailStatusDtoBeta
|
|
9961
9973
|
*/
|
|
9962
9974
|
'verificationStatus'?: EmailStatusDtoBetaVerificationStatusBeta;
|
|
9975
|
+
/**
|
|
9976
|
+
* The AWS SES region the sender address is associated with
|
|
9977
|
+
* @type {string}
|
|
9978
|
+
* @memberof EmailStatusDtoBeta
|
|
9979
|
+
*/
|
|
9980
|
+
'region'?: string;
|
|
9963
9981
|
}
|
|
9964
9982
|
|
|
9965
9983
|
export const EmailStatusDtoBetaVerificationStatusBeta = {
|
|
9966
9984
|
Pending: 'PENDING',
|
|
9967
9985
|
Success: 'SUCCESS',
|
|
9968
|
-
Failed: 'FAILED'
|
|
9986
|
+
Failed: 'FAILED',
|
|
9987
|
+
Na: 'NA'
|
|
9969
9988
|
} as const;
|
|
9970
9989
|
|
|
9971
9990
|
export type EmailStatusDtoBetaVerificationStatusBeta = typeof EmailStatusDtoBetaVerificationStatusBeta[keyof typeof EmailStatusDtoBetaVerificationStatusBeta];
|
|
@@ -17767,15 +17786,13 @@ export interface MatchTermBeta {
|
|
|
17767
17786
|
'children'?: Array<{ [key: string]: any; }> | null;
|
|
17768
17787
|
}
|
|
17769
17788
|
/**
|
|
17770
|
-
*
|
|
17789
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
17771
17790
|
* @export
|
|
17772
17791
|
* @enum {string}
|
|
17773
17792
|
*/
|
|
17774
17793
|
|
|
17775
17794
|
export const MediumBeta = {
|
|
17776
17795
|
Email: 'EMAIL',
|
|
17777
|
-
Sms: 'SMS',
|
|
17778
|
-
Phone: 'PHONE',
|
|
17779
17796
|
Slack: 'SLACK',
|
|
17780
17797
|
Teams: 'TEAMS'
|
|
17781
17798
|
} as const;
|
|
@@ -27552,12 +27569,36 @@ export interface SendTestNotificationRequestDtoBeta {
|
|
|
27552
27569
|
* @memberof SendTestNotificationRequestDtoBeta
|
|
27553
27570
|
*/
|
|
27554
27571
|
'medium'?: SendTestNotificationRequestDtoBetaMediumBeta;
|
|
27572
|
+
/**
|
|
27573
|
+
* The locale for the message text.
|
|
27574
|
+
* @type {string}
|
|
27575
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
27576
|
+
*/
|
|
27577
|
+
'locale'?: string;
|
|
27555
27578
|
/**
|
|
27556
27579
|
* A Json object that denotes the context specific to the template.
|
|
27557
27580
|
* @type {object}
|
|
27558
27581
|
* @memberof SendTestNotificationRequestDtoBeta
|
|
27559
27582
|
*/
|
|
27560
27583
|
'context'?: object;
|
|
27584
|
+
/**
|
|
27585
|
+
* A list of override recipient email addresses for the test notification.
|
|
27586
|
+
* @type {Array<string>}
|
|
27587
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
27588
|
+
*/
|
|
27589
|
+
'recipientEmailList'?: Array<string>;
|
|
27590
|
+
/**
|
|
27591
|
+
* A list of CC email addresses for the test notification.
|
|
27592
|
+
* @type {Array<string>}
|
|
27593
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
27594
|
+
*/
|
|
27595
|
+
'carbonCopy'?: Array<string>;
|
|
27596
|
+
/**
|
|
27597
|
+
* A list of BCC email addresses for the test notification.
|
|
27598
|
+
* @type {Array<string>}
|
|
27599
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
27600
|
+
*/
|
|
27601
|
+
'blindCarbonCopy'?: Array<string>;
|
|
27561
27602
|
}
|
|
27562
27603
|
|
|
27563
27604
|
export const SendTestNotificationRequestDtoBetaMediumBeta = {
|
|
@@ -31631,13 +31672,13 @@ export interface TaskStatusMessageParametersInnerBeta {
|
|
|
31631
31672
|
*/
|
|
31632
31673
|
export interface TemplateBulkDeleteDtoBeta {
|
|
31633
31674
|
/**
|
|
31634
|
-
*
|
|
31675
|
+
* The template key to delete
|
|
31635
31676
|
* @type {string}
|
|
31636
31677
|
* @memberof TemplateBulkDeleteDtoBeta
|
|
31637
31678
|
*/
|
|
31638
31679
|
'key': string;
|
|
31639
31680
|
/**
|
|
31640
|
-
*
|
|
31681
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
31641
31682
|
* @type {string}
|
|
31642
31683
|
* @memberof TemplateBulkDeleteDtoBeta
|
|
31643
31684
|
*/
|
|
@@ -31652,8 +31693,8 @@ export interface TemplateBulkDeleteDtoBeta {
|
|
|
31652
31693
|
|
|
31653
31694
|
export const TemplateBulkDeleteDtoBetaMediumBeta = {
|
|
31654
31695
|
Email: 'EMAIL',
|
|
31655
|
-
|
|
31656
|
-
|
|
31696
|
+
Slack: 'SLACK',
|
|
31697
|
+
Teams: 'TEAMS'
|
|
31657
31698
|
} as const;
|
|
31658
31699
|
|
|
31659
31700
|
export type TemplateBulkDeleteDtoBetaMediumBeta = typeof TemplateBulkDeleteDtoBetaMediumBeta[keyof typeof TemplateBulkDeleteDtoBetaMediumBeta];
|
|
@@ -31752,22 +31793,20 @@ export interface TemplateDtoBeta {
|
|
|
31752
31793
|
'modified'?: string;
|
|
31753
31794
|
/**
|
|
31754
31795
|
*
|
|
31755
|
-
* @type {
|
|
31796
|
+
* @type {TemplateDtoSlackTemplateBeta}
|
|
31756
31797
|
* @memberof TemplateDtoBeta
|
|
31757
31798
|
*/
|
|
31758
|
-
'slackTemplate'?:
|
|
31799
|
+
'slackTemplate'?: TemplateDtoSlackTemplateBeta;
|
|
31759
31800
|
/**
|
|
31760
31801
|
*
|
|
31761
|
-
* @type {
|
|
31802
|
+
* @type {TemplateDtoTeamsTemplateBeta}
|
|
31762
31803
|
* @memberof TemplateDtoBeta
|
|
31763
31804
|
*/
|
|
31764
|
-
'teamsTemplate'?:
|
|
31805
|
+
'teamsTemplate'?: TemplateDtoTeamsTemplateBeta;
|
|
31765
31806
|
}
|
|
31766
31807
|
|
|
31767
31808
|
export const TemplateDtoBetaMediumBeta = {
|
|
31768
31809
|
Email: 'EMAIL',
|
|
31769
|
-
Phone: 'PHONE',
|
|
31770
|
-
Sms: 'SMS',
|
|
31771
31810
|
Slack: 'SLACK',
|
|
31772
31811
|
Teams: 'TEAMS'
|
|
31773
31812
|
} as const;
|
|
@@ -31864,14 +31903,158 @@ export interface TemplateDtoDefaultBeta {
|
|
|
31864
31903
|
|
|
31865
31904
|
export const TemplateDtoDefaultBetaMediumBeta = {
|
|
31866
31905
|
Email: 'EMAIL',
|
|
31867
|
-
Phone: 'PHONE',
|
|
31868
|
-
Sms: 'SMS',
|
|
31869
31906
|
Slack: 'SLACK',
|
|
31870
31907
|
Teams: 'TEAMS'
|
|
31871
31908
|
} as const;
|
|
31872
31909
|
|
|
31873
31910
|
export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMediumBeta[keyof typeof TemplateDtoDefaultBetaMediumBeta];
|
|
31874
31911
|
|
|
31912
|
+
/**
|
|
31913
|
+
*
|
|
31914
|
+
* @export
|
|
31915
|
+
* @interface TemplateDtoSlackTemplateBeta
|
|
31916
|
+
*/
|
|
31917
|
+
export interface TemplateDtoSlackTemplateBeta {
|
|
31918
|
+
/**
|
|
31919
|
+
* The template key
|
|
31920
|
+
* @type {string}
|
|
31921
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31922
|
+
*/
|
|
31923
|
+
'key'?: string | null;
|
|
31924
|
+
/**
|
|
31925
|
+
* The main text content of the Slack message
|
|
31926
|
+
* @type {string}
|
|
31927
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31928
|
+
*/
|
|
31929
|
+
'text'?: string;
|
|
31930
|
+
/**
|
|
31931
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
31932
|
+
* @type {string}
|
|
31933
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31934
|
+
*/
|
|
31935
|
+
'blocks'?: string | null;
|
|
31936
|
+
/**
|
|
31937
|
+
* JSON string of Slack attachments
|
|
31938
|
+
* @type {string}
|
|
31939
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31940
|
+
*/
|
|
31941
|
+
'attachments'?: string;
|
|
31942
|
+
/**
|
|
31943
|
+
* The type of notification
|
|
31944
|
+
* @type {string}
|
|
31945
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31946
|
+
*/
|
|
31947
|
+
'notificationType'?: string | null;
|
|
31948
|
+
/**
|
|
31949
|
+
* The approval request ID
|
|
31950
|
+
* @type {string}
|
|
31951
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31952
|
+
*/
|
|
31953
|
+
'approvalId'?: string | null;
|
|
31954
|
+
/**
|
|
31955
|
+
* The request ID
|
|
31956
|
+
* @type {string}
|
|
31957
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31958
|
+
*/
|
|
31959
|
+
'requestId'?: string | null;
|
|
31960
|
+
/**
|
|
31961
|
+
* The ID of the user who made the request
|
|
31962
|
+
* @type {string}
|
|
31963
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31964
|
+
*/
|
|
31965
|
+
'requestedById'?: string | null;
|
|
31966
|
+
/**
|
|
31967
|
+
* Whether this is a subscription notification
|
|
31968
|
+
* @type {boolean}
|
|
31969
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31970
|
+
*/
|
|
31971
|
+
'isSubscription'?: boolean | null;
|
|
31972
|
+
/**
|
|
31973
|
+
*
|
|
31974
|
+
* @type {TemplateSlackAutoApprovalDataBeta}
|
|
31975
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31976
|
+
*/
|
|
31977
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
|
|
31978
|
+
/**
|
|
31979
|
+
*
|
|
31980
|
+
* @type {TemplateSlackCustomFieldsBeta}
|
|
31981
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31982
|
+
*/
|
|
31983
|
+
'customFields'?: TemplateSlackCustomFieldsBeta | null;
|
|
31984
|
+
}
|
|
31985
|
+
/**
|
|
31986
|
+
*
|
|
31987
|
+
* @export
|
|
31988
|
+
* @interface TemplateDtoTeamsTemplateBeta
|
|
31989
|
+
*/
|
|
31990
|
+
export interface TemplateDtoTeamsTemplateBeta {
|
|
31991
|
+
/**
|
|
31992
|
+
* The template key
|
|
31993
|
+
* @type {string}
|
|
31994
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31995
|
+
*/
|
|
31996
|
+
'key'?: string | null;
|
|
31997
|
+
/**
|
|
31998
|
+
* The title of the Teams message
|
|
31999
|
+
* @type {string}
|
|
32000
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32001
|
+
*/
|
|
32002
|
+
'title'?: string | null;
|
|
32003
|
+
/**
|
|
32004
|
+
* The main text content of the Teams message
|
|
32005
|
+
* @type {string}
|
|
32006
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32007
|
+
*/
|
|
32008
|
+
'text'?: string;
|
|
32009
|
+
/**
|
|
32010
|
+
* JSON string of the Teams adaptive card
|
|
32011
|
+
* @type {string}
|
|
32012
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32013
|
+
*/
|
|
32014
|
+
'messageJSON'?: string | null;
|
|
32015
|
+
/**
|
|
32016
|
+
* Whether this is a subscription notification
|
|
32017
|
+
* @type {boolean}
|
|
32018
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32019
|
+
*/
|
|
32020
|
+
'isSubscription'?: boolean | null;
|
|
32021
|
+
/**
|
|
32022
|
+
* The approval request ID
|
|
32023
|
+
* @type {string}
|
|
32024
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32025
|
+
*/
|
|
32026
|
+
'approvalId'?: string | null;
|
|
32027
|
+
/**
|
|
32028
|
+
* The request ID
|
|
32029
|
+
* @type {string}
|
|
32030
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32031
|
+
*/
|
|
32032
|
+
'requestId'?: string | null;
|
|
32033
|
+
/**
|
|
32034
|
+
* The ID of the user who made the request
|
|
32035
|
+
* @type {string}
|
|
32036
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32037
|
+
*/
|
|
32038
|
+
'requestedById'?: string | null;
|
|
32039
|
+
/**
|
|
32040
|
+
* The type of notification
|
|
32041
|
+
* @type {string}
|
|
32042
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32043
|
+
*/
|
|
32044
|
+
'notificationType'?: string | null;
|
|
32045
|
+
/**
|
|
32046
|
+
*
|
|
32047
|
+
* @type {TemplateSlackAutoApprovalDataBeta}
|
|
32048
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32049
|
+
*/
|
|
32050
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
|
|
32051
|
+
/**
|
|
32052
|
+
*
|
|
32053
|
+
* @type {TemplateSlackCustomFieldsBeta}
|
|
32054
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
32055
|
+
*/
|
|
32056
|
+
'customFields'?: TemplateSlackCustomFieldsBeta | null;
|
|
32057
|
+
}
|
|
31875
32058
|
/**
|
|
31876
32059
|
*
|
|
31877
32060
|
* @export
|
|
@@ -31879,31 +32062,31 @@ export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMedi
|
|
|
31879
32062
|
*/
|
|
31880
32063
|
export interface TemplateSlackAutoApprovalDataBeta {
|
|
31881
32064
|
/**
|
|
31882
|
-
*
|
|
32065
|
+
* Whether the request was auto-approved
|
|
31883
32066
|
* @type {string}
|
|
31884
32067
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31885
32068
|
*/
|
|
31886
32069
|
'isAutoApproved'?: string | null;
|
|
31887
32070
|
/**
|
|
31888
|
-
*
|
|
32071
|
+
* The item ID
|
|
31889
32072
|
* @type {string}
|
|
31890
32073
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31891
32074
|
*/
|
|
31892
32075
|
'itemId'?: string | null;
|
|
31893
32076
|
/**
|
|
31894
|
-
*
|
|
32077
|
+
* The item type
|
|
31895
32078
|
* @type {string}
|
|
31896
32079
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31897
32080
|
*/
|
|
31898
32081
|
'itemType'?: string | null;
|
|
31899
32082
|
/**
|
|
31900
|
-
*
|
|
32083
|
+
* JSON message for auto-approval
|
|
31901
32084
|
* @type {string}
|
|
31902
32085
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31903
32086
|
*/
|
|
31904
32087
|
'autoApprovalMessageJSON'?: string | null;
|
|
31905
32088
|
/**
|
|
31906
|
-
*
|
|
32089
|
+
* Title for auto-approval
|
|
31907
32090
|
* @type {string}
|
|
31908
32091
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
31909
32092
|
*/
|
|
@@ -31916,55 +32099,55 @@ export interface TemplateSlackAutoApprovalDataBeta {
|
|
|
31916
32099
|
*/
|
|
31917
32100
|
export interface TemplateSlackBeta {
|
|
31918
32101
|
/**
|
|
31919
|
-
*
|
|
32102
|
+
* The template key
|
|
31920
32103
|
* @type {string}
|
|
31921
32104
|
* @memberof TemplateSlackBeta
|
|
31922
32105
|
*/
|
|
31923
32106
|
'key'?: string | null;
|
|
31924
32107
|
/**
|
|
31925
|
-
*
|
|
32108
|
+
* The main text content of the Slack message
|
|
31926
32109
|
* @type {string}
|
|
31927
32110
|
* @memberof TemplateSlackBeta
|
|
31928
32111
|
*/
|
|
31929
32112
|
'text'?: string;
|
|
31930
32113
|
/**
|
|
31931
|
-
*
|
|
32114
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
31932
32115
|
* @type {string}
|
|
31933
32116
|
* @memberof TemplateSlackBeta
|
|
31934
32117
|
*/
|
|
31935
32118
|
'blocks'?: string | null;
|
|
31936
32119
|
/**
|
|
31937
|
-
*
|
|
32120
|
+
* JSON string of Slack attachments
|
|
31938
32121
|
* @type {string}
|
|
31939
32122
|
* @memberof TemplateSlackBeta
|
|
31940
32123
|
*/
|
|
31941
32124
|
'attachments'?: string;
|
|
31942
32125
|
/**
|
|
31943
|
-
*
|
|
32126
|
+
* The type of notification
|
|
31944
32127
|
* @type {string}
|
|
31945
32128
|
* @memberof TemplateSlackBeta
|
|
31946
32129
|
*/
|
|
31947
32130
|
'notificationType'?: string | null;
|
|
31948
32131
|
/**
|
|
31949
|
-
*
|
|
32132
|
+
* The approval request ID
|
|
31950
32133
|
* @type {string}
|
|
31951
32134
|
* @memberof TemplateSlackBeta
|
|
31952
32135
|
*/
|
|
31953
32136
|
'approvalId'?: string | null;
|
|
31954
32137
|
/**
|
|
31955
|
-
*
|
|
32138
|
+
* The request ID
|
|
31956
32139
|
* @type {string}
|
|
31957
32140
|
* @memberof TemplateSlackBeta
|
|
31958
32141
|
*/
|
|
31959
32142
|
'requestId'?: string | null;
|
|
31960
32143
|
/**
|
|
31961
|
-
*
|
|
32144
|
+
* The ID of the user who made the request
|
|
31962
32145
|
* @type {string}
|
|
31963
32146
|
* @memberof TemplateSlackBeta
|
|
31964
32147
|
*/
|
|
31965
32148
|
'requestedById'?: string | null;
|
|
31966
32149
|
/**
|
|
31967
|
-
*
|
|
32150
|
+
* Whether this is a subscription notification
|
|
31968
32151
|
* @type {boolean}
|
|
31969
32152
|
* @memberof TemplateSlackBeta
|
|
31970
32153
|
*/
|
|
@@ -31989,25 +32172,25 @@ export interface TemplateSlackBeta {
|
|
|
31989
32172
|
*/
|
|
31990
32173
|
export interface TemplateSlackCustomFieldsBeta {
|
|
31991
32174
|
/**
|
|
31992
|
-
*
|
|
32175
|
+
* The type of request
|
|
31993
32176
|
* @type {string}
|
|
31994
32177
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
31995
32178
|
*/
|
|
31996
32179
|
'requestType'?: string | null;
|
|
31997
32180
|
/**
|
|
31998
|
-
*
|
|
32181
|
+
* Whether the request contains a deny action
|
|
31999
32182
|
* @type {string}
|
|
32000
32183
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
32001
32184
|
*/
|
|
32002
32185
|
'containsDeny'?: string | null;
|
|
32003
32186
|
/**
|
|
32004
|
-
*
|
|
32187
|
+
* The campaign ID
|
|
32005
32188
|
* @type {string}
|
|
32006
32189
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
32007
32190
|
*/
|
|
32008
32191
|
'campaignId'?: string | null;
|
|
32009
32192
|
/**
|
|
32010
|
-
*
|
|
32193
|
+
* The campaign status
|
|
32011
32194
|
* @type {string}
|
|
32012
32195
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
32013
32196
|
*/
|
|
@@ -32020,55 +32203,55 @@ export interface TemplateSlackCustomFieldsBeta {
|
|
|
32020
32203
|
*/
|
|
32021
32204
|
export interface TemplateTeamsBeta {
|
|
32022
32205
|
/**
|
|
32023
|
-
*
|
|
32206
|
+
* The template key
|
|
32024
32207
|
* @type {string}
|
|
32025
32208
|
* @memberof TemplateTeamsBeta
|
|
32026
32209
|
*/
|
|
32027
32210
|
'key'?: string | null;
|
|
32028
32211
|
/**
|
|
32029
|
-
*
|
|
32212
|
+
* The title of the Teams message
|
|
32030
32213
|
* @type {string}
|
|
32031
32214
|
* @memberof TemplateTeamsBeta
|
|
32032
32215
|
*/
|
|
32033
32216
|
'title'?: string | null;
|
|
32034
32217
|
/**
|
|
32035
|
-
*
|
|
32218
|
+
* The main text content of the Teams message
|
|
32036
32219
|
* @type {string}
|
|
32037
32220
|
* @memberof TemplateTeamsBeta
|
|
32038
32221
|
*/
|
|
32039
32222
|
'text'?: string;
|
|
32040
32223
|
/**
|
|
32041
|
-
*
|
|
32224
|
+
* JSON string of the Teams adaptive card
|
|
32042
32225
|
* @type {string}
|
|
32043
32226
|
* @memberof TemplateTeamsBeta
|
|
32044
32227
|
*/
|
|
32045
32228
|
'messageJSON'?: string | null;
|
|
32046
32229
|
/**
|
|
32047
|
-
*
|
|
32230
|
+
* Whether this is a subscription notification
|
|
32048
32231
|
* @type {boolean}
|
|
32049
32232
|
* @memberof TemplateTeamsBeta
|
|
32050
32233
|
*/
|
|
32051
32234
|
'isSubscription'?: boolean | null;
|
|
32052
32235
|
/**
|
|
32053
|
-
*
|
|
32236
|
+
* The approval request ID
|
|
32054
32237
|
* @type {string}
|
|
32055
32238
|
* @memberof TemplateTeamsBeta
|
|
32056
32239
|
*/
|
|
32057
32240
|
'approvalId'?: string | null;
|
|
32058
32241
|
/**
|
|
32059
|
-
*
|
|
32242
|
+
* The request ID
|
|
32060
32243
|
* @type {string}
|
|
32061
32244
|
* @memberof TemplateTeamsBeta
|
|
32062
32245
|
*/
|
|
32063
32246
|
'requestId'?: string | null;
|
|
32064
32247
|
/**
|
|
32065
|
-
*
|
|
32248
|
+
* The ID of the user who made the request
|
|
32066
32249
|
* @type {string}
|
|
32067
32250
|
* @memberof TemplateTeamsBeta
|
|
32068
32251
|
*/
|
|
32069
32252
|
'requestedById'?: string | null;
|
|
32070
32253
|
/**
|
|
32071
|
-
*
|
|
32254
|
+
* The type of notification
|
|
32072
32255
|
* @type {string}
|
|
32073
32256
|
* @memberof TemplateTeamsBeta
|
|
32074
32257
|
*/
|
|
@@ -72204,7 +72387,7 @@ export const NotificationsBetaApiAxiosParamCreator = function (configuration?: C
|
|
|
72204
72387
|
};
|
|
72205
72388
|
},
|
|
72206
72389
|
/**
|
|
72207
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
72390
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
72208
72391
|
* @summary Bulk delete notification templates
|
|
72209
72392
|
* @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
|
|
72210
72393
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -72803,7 +72986,7 @@ export const NotificationsBetaApiFp = function(configuration?: Configuration) {
|
|
|
72803
72986
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
72804
72987
|
},
|
|
72805
72988
|
/**
|
|
72806
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
72989
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
72807
72990
|
* @summary Bulk delete notification templates
|
|
72808
72991
|
* @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
|
|
72809
72992
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -73006,7 +73189,7 @@ export const NotificationsBetaApiFactory = function (configuration?: Configurati
|
|
|
73006
73189
|
return localVarFp.createVerifiedFromAddress(requestParameters.emailStatusDtoBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
73007
73190
|
},
|
|
73008
73191
|
/**
|
|
73009
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
73192
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
73010
73193
|
* @summary Bulk delete notification templates
|
|
73011
73194
|
* @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
73012
73195
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -73415,7 +73598,7 @@ export class NotificationsBetaApi extends BaseAPI {
|
|
|
73415
73598
|
}
|
|
73416
73599
|
|
|
73417
73600
|
/**
|
|
73418
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
73601
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
73419
73602
|
* @summary Bulk delete notification templates
|
|
73420
73603
|
* @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
73421
73604
|
* @param {*} [axiosOptions] Override http request option.
|
package/beta/common.ts
CHANGED
|
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
|
|
|
146
146
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
|
-
let userAgent = `SailPoint-SDK-TypeScript/1.8.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.4`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
153
153
|
userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
|
|
154
154
|
const headers = {
|
|
155
155
|
...axiosArgs.axiosOptions.headers,
|
|
156
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.4'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|