sailpoint-api-client 1.8.3 → 1.8.5
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 +309 -54
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +302 -53
- package/dist/beta/api.js +31 -26
- 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 +400 -273
- package/dist/v2024/api.js +228 -349
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +399 -274
- package/dist/v2025/api.js +219 -342
- 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/api.d.ts +66 -0
- package/dist/v3/api.js +19 -9
- package/dist/v3/api.js.map +1 -1
- 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 +526 -512
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +514 -503
- 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/api.ts +72 -0
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
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.5`;
|
|
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.5'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/api.d.ts
CHANGED
|
@@ -9375,11 +9375,17 @@ export interface DkimAttributesBeta {
|
|
|
9375
9375
|
*/
|
|
9376
9376
|
'dkimTokens'?: Array<string>;
|
|
9377
9377
|
/**
|
|
9378
|
-
* The current status if the domain /identity has been verified. Ie
|
|
9378
|
+
* The current status if the domain /identity has been verified. Ie SUCCESS, FAILED, PENDING
|
|
9379
9379
|
* @type {string}
|
|
9380
9380
|
* @memberof DkimAttributesBeta
|
|
9381
9381
|
*/
|
|
9382
9382
|
'dkimVerificationStatus'?: string;
|
|
9383
|
+
/**
|
|
9384
|
+
* The AWS SES region the domain is associated with
|
|
9385
|
+
* @type {string}
|
|
9386
|
+
* @memberof DkimAttributesBeta
|
|
9387
|
+
*/
|
|
9388
|
+
'region'?: string;
|
|
9383
9389
|
}
|
|
9384
9390
|
/**
|
|
9385
9391
|
*
|
|
@@ -9414,10 +9420,10 @@ export interface DomainStatusDtoBeta {
|
|
|
9414
9420
|
'domain'?: string;
|
|
9415
9421
|
/**
|
|
9416
9422
|
* DKIM is enabled for this domain
|
|
9417
|
-
* @type {
|
|
9423
|
+
* @type {boolean}
|
|
9418
9424
|
* @memberof DomainStatusDtoBeta
|
|
9419
9425
|
*/
|
|
9420
|
-
'dkimEnabled'?:
|
|
9426
|
+
'dkimEnabled'?: boolean;
|
|
9421
9427
|
/**
|
|
9422
9428
|
* DKIM tokens required for authentication
|
|
9423
9429
|
* @type {Array<string>}
|
|
@@ -9430,6 +9436,12 @@ export interface DomainStatusDtoBeta {
|
|
|
9430
9436
|
* @memberof DomainStatusDtoBeta
|
|
9431
9437
|
*/
|
|
9432
9438
|
'dkimVerificationStatus'?: string;
|
|
9439
|
+
/**
|
|
9440
|
+
* The AWS SES region the domain is associated with
|
|
9441
|
+
* @type {string}
|
|
9442
|
+
* @memberof DomainStatusDtoBeta
|
|
9443
|
+
*/
|
|
9444
|
+
'region'?: string;
|
|
9433
9445
|
}
|
|
9434
9446
|
/**
|
|
9435
9447
|
* An enumeration of the types of DTOs supported within the IdentityNow infrastructure.
|
|
@@ -9552,34 +9564,41 @@ export interface EmailNotificationOptionBeta {
|
|
|
9552
9564
|
*/
|
|
9553
9565
|
export interface EmailStatusDtoBeta {
|
|
9554
9566
|
/**
|
|
9555
|
-
*
|
|
9567
|
+
* Unique identifier for the verified sender address
|
|
9556
9568
|
* @type {string}
|
|
9557
9569
|
* @memberof EmailStatusDtoBeta
|
|
9558
9570
|
*/
|
|
9559
9571
|
'id'?: string | null;
|
|
9560
9572
|
/**
|
|
9561
|
-
*
|
|
9573
|
+
* The verified sender email address
|
|
9562
9574
|
* @type {string}
|
|
9563
9575
|
* @memberof EmailStatusDtoBeta
|
|
9564
9576
|
*/
|
|
9565
9577
|
'email'?: string;
|
|
9566
9578
|
/**
|
|
9567
|
-
*
|
|
9579
|
+
* Whether the sender address is verified by domain
|
|
9568
9580
|
* @type {boolean}
|
|
9569
9581
|
* @memberof EmailStatusDtoBeta
|
|
9570
9582
|
*/
|
|
9571
9583
|
'isVerifiedByDomain'?: boolean;
|
|
9572
9584
|
/**
|
|
9573
|
-
*
|
|
9585
|
+
* The verification status of the sender address
|
|
9574
9586
|
* @type {string}
|
|
9575
9587
|
* @memberof EmailStatusDtoBeta
|
|
9576
9588
|
*/
|
|
9577
9589
|
'verificationStatus'?: EmailStatusDtoBetaVerificationStatusBeta;
|
|
9590
|
+
/**
|
|
9591
|
+
* The AWS SES region the sender address is associated with
|
|
9592
|
+
* @type {string}
|
|
9593
|
+
* @memberof EmailStatusDtoBeta
|
|
9594
|
+
*/
|
|
9595
|
+
'region'?: string | null;
|
|
9578
9596
|
}
|
|
9579
9597
|
export declare const EmailStatusDtoBetaVerificationStatusBeta: {
|
|
9580
9598
|
readonly Pending: "PENDING";
|
|
9581
9599
|
readonly Success: "SUCCESS";
|
|
9582
9600
|
readonly Failed: "FAILED";
|
|
9601
|
+
readonly Na: "NA";
|
|
9583
9602
|
};
|
|
9584
9603
|
export type EmailStatusDtoBetaVerificationStatusBeta = typeof EmailStatusDtoBetaVerificationStatusBeta[keyof typeof EmailStatusDtoBetaVerificationStatusBeta];
|
|
9585
9604
|
/**
|
|
@@ -9757,6 +9776,12 @@ export interface EntitlementBeta {
|
|
|
9757
9776
|
* @memberof EntitlementBeta
|
|
9758
9777
|
*/
|
|
9759
9778
|
'owner'?: EntitlementOwnerBeta;
|
|
9779
|
+
/**
|
|
9780
|
+
* List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
|
|
9781
|
+
* @type {Array<AdditionalOwnerRefBeta>}
|
|
9782
|
+
* @memberof EntitlementBeta
|
|
9783
|
+
*/
|
|
9784
|
+
'additionalOwners'?: Array<AdditionalOwnerRefBeta> | null;
|
|
9760
9785
|
/**
|
|
9761
9786
|
*
|
|
9762
9787
|
* @type {Array<PermissionDtoBeta>}
|
|
@@ -11663,7 +11688,37 @@ export interface FullDiscoveredApplicationsBeta {
|
|
|
11663
11688
|
* @memberof FullDiscoveredApplicationsBeta
|
|
11664
11689
|
*/
|
|
11665
11690
|
'associatedSources'?: Array<string>;
|
|
11691
|
+
/**
|
|
11692
|
+
* The risk score of the application ranging from 0-100, 100 being highest risk.
|
|
11693
|
+
* @type {number}
|
|
11694
|
+
* @memberof FullDiscoveredApplicationsBeta
|
|
11695
|
+
*/
|
|
11696
|
+
'riskScore'?: number;
|
|
11697
|
+
/**
|
|
11698
|
+
* Indicates whether the application is used for business purposes.
|
|
11699
|
+
* @type {boolean}
|
|
11700
|
+
* @memberof FullDiscoveredApplicationsBeta
|
|
11701
|
+
*/
|
|
11702
|
+
'isBusiness'?: boolean;
|
|
11703
|
+
/**
|
|
11704
|
+
* The total number of sign-in accounts for the application.
|
|
11705
|
+
* @type {number}
|
|
11706
|
+
* @memberof FullDiscoveredApplicationsBeta
|
|
11707
|
+
*/
|
|
11708
|
+
'totalSigninsCount'?: number;
|
|
11709
|
+
/**
|
|
11710
|
+
* The risk level of the application.
|
|
11711
|
+
* @type {string}
|
|
11712
|
+
* @memberof FullDiscoveredApplicationsBeta
|
|
11713
|
+
*/
|
|
11714
|
+
'riskLevel'?: FullDiscoveredApplicationsBetaRiskLevelBeta;
|
|
11666
11715
|
}
|
|
11716
|
+
export declare const FullDiscoveredApplicationsBetaRiskLevelBeta: {
|
|
11717
|
+
readonly High: "High";
|
|
11718
|
+
readonly Medium: "Medium";
|
|
11719
|
+
readonly Low: "Low";
|
|
11720
|
+
};
|
|
11721
|
+
export type FullDiscoveredApplicationsBetaRiskLevelBeta = typeof FullDiscoveredApplicationsBetaRiskLevelBeta[keyof typeof FullDiscoveredApplicationsBetaRiskLevelBeta];
|
|
11667
11722
|
/**
|
|
11668
11723
|
* Determines which items will be included in this campaign. The default campaign filter is used if this field is left blank.
|
|
11669
11724
|
* @export
|
|
@@ -17145,14 +17200,12 @@ export interface MatchTermBeta {
|
|
|
17145
17200
|
}> | null;
|
|
17146
17201
|
}
|
|
17147
17202
|
/**
|
|
17148
|
-
*
|
|
17203
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
17149
17204
|
* @export
|
|
17150
17205
|
* @enum {string}
|
|
17151
17206
|
*/
|
|
17152
17207
|
export declare const MediumBeta: {
|
|
17153
17208
|
readonly Email: "EMAIL";
|
|
17154
|
-
readonly Sms: "SMS";
|
|
17155
|
-
readonly Phone: "PHONE";
|
|
17156
17209
|
readonly Slack: "SLACK";
|
|
17157
17210
|
readonly Teams: "TEAMS";
|
|
17158
17211
|
};
|
|
@@ -26651,12 +26704,36 @@ export interface SendTestNotificationRequestDtoBeta {
|
|
|
26651
26704
|
* @memberof SendTestNotificationRequestDtoBeta
|
|
26652
26705
|
*/
|
|
26653
26706
|
'medium'?: SendTestNotificationRequestDtoBetaMediumBeta;
|
|
26707
|
+
/**
|
|
26708
|
+
* The locale for the message text.
|
|
26709
|
+
* @type {string}
|
|
26710
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
26711
|
+
*/
|
|
26712
|
+
'locale'?: string;
|
|
26654
26713
|
/**
|
|
26655
26714
|
* A Json object that denotes the context specific to the template.
|
|
26656
26715
|
* @type {object}
|
|
26657
26716
|
* @memberof SendTestNotificationRequestDtoBeta
|
|
26658
26717
|
*/
|
|
26659
26718
|
'context'?: object;
|
|
26719
|
+
/**
|
|
26720
|
+
* A list of override recipient email addresses for the test notification.
|
|
26721
|
+
* @type {Array<string>}
|
|
26722
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
26723
|
+
*/
|
|
26724
|
+
'recipientEmailList'?: Array<string>;
|
|
26725
|
+
/**
|
|
26726
|
+
* A list of CC email addresses for the test notification.
|
|
26727
|
+
* @type {Array<string>}
|
|
26728
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
26729
|
+
*/
|
|
26730
|
+
'carbonCopy'?: Array<string>;
|
|
26731
|
+
/**
|
|
26732
|
+
* A list of BCC email addresses for the test notification.
|
|
26733
|
+
* @type {Array<string>}
|
|
26734
|
+
* @memberof SendTestNotificationRequestDtoBeta
|
|
26735
|
+
*/
|
|
26736
|
+
'blindCarbonCopy'?: Array<string>;
|
|
26660
26737
|
}
|
|
26661
26738
|
export declare const SendTestNotificationRequestDtoBetaMediumBeta: {
|
|
26662
26739
|
readonly Email: "EMAIL";
|
|
@@ -27088,7 +27165,37 @@ export interface SlimDiscoveredApplicationsBeta {
|
|
|
27088
27165
|
* @memberof SlimDiscoveredApplicationsBeta
|
|
27089
27166
|
*/
|
|
27090
27167
|
'status'?: string;
|
|
27168
|
+
/**
|
|
27169
|
+
* The risk score of the application ranging from 0-100, 100 being highest risk.
|
|
27170
|
+
* @type {number}
|
|
27171
|
+
* @memberof SlimDiscoveredApplicationsBeta
|
|
27172
|
+
*/
|
|
27173
|
+
'riskScore'?: number;
|
|
27174
|
+
/**
|
|
27175
|
+
* Indicates whether the application is used for business purposes.
|
|
27176
|
+
* @type {boolean}
|
|
27177
|
+
* @memberof SlimDiscoveredApplicationsBeta
|
|
27178
|
+
*/
|
|
27179
|
+
'isBusiness'?: boolean;
|
|
27180
|
+
/**
|
|
27181
|
+
* The total number of sign-in accounts for the application.
|
|
27182
|
+
* @type {number}
|
|
27183
|
+
* @memberof SlimDiscoveredApplicationsBeta
|
|
27184
|
+
*/
|
|
27185
|
+
'totalSigninsCount'?: number;
|
|
27186
|
+
/**
|
|
27187
|
+
* The risk level of the application.
|
|
27188
|
+
* @type {string}
|
|
27189
|
+
* @memberof SlimDiscoveredApplicationsBeta
|
|
27190
|
+
*/
|
|
27191
|
+
'riskLevel'?: SlimDiscoveredApplicationsBetaRiskLevelBeta;
|
|
27091
27192
|
}
|
|
27193
|
+
export declare const SlimDiscoveredApplicationsBetaRiskLevelBeta: {
|
|
27194
|
+
readonly High: "High";
|
|
27195
|
+
readonly Medium: "Medium";
|
|
27196
|
+
readonly Low: "Low";
|
|
27197
|
+
};
|
|
27198
|
+
export type SlimDiscoveredApplicationsBetaRiskLevelBeta = typeof SlimDiscoveredApplicationsBetaRiskLevelBeta[keyof typeof SlimDiscoveredApplicationsBetaRiskLevelBeta];
|
|
27092
27199
|
/**
|
|
27093
27200
|
*
|
|
27094
27201
|
* @export
|
|
@@ -30616,13 +30723,13 @@ export interface TaskStatusMessageParametersInnerBeta {
|
|
|
30616
30723
|
*/
|
|
30617
30724
|
export interface TemplateBulkDeleteDtoBeta {
|
|
30618
30725
|
/**
|
|
30619
|
-
*
|
|
30726
|
+
* The template key to delete
|
|
30620
30727
|
* @type {string}
|
|
30621
30728
|
* @memberof TemplateBulkDeleteDtoBeta
|
|
30622
30729
|
*/
|
|
30623
30730
|
'key': string;
|
|
30624
30731
|
/**
|
|
30625
|
-
*
|
|
30732
|
+
* The notification medium (EMAIL, SLACK, or TEAMS)
|
|
30626
30733
|
* @type {string}
|
|
30627
30734
|
* @memberof TemplateBulkDeleteDtoBeta
|
|
30628
30735
|
*/
|
|
@@ -30636,8 +30743,8 @@ export interface TemplateBulkDeleteDtoBeta {
|
|
|
30636
30743
|
}
|
|
30637
30744
|
export declare const TemplateBulkDeleteDtoBetaMediumBeta: {
|
|
30638
30745
|
readonly Email: "EMAIL";
|
|
30639
|
-
readonly
|
|
30640
|
-
readonly
|
|
30746
|
+
readonly Slack: "SLACK";
|
|
30747
|
+
readonly Teams: "TEAMS";
|
|
30641
30748
|
};
|
|
30642
30749
|
export type TemplateBulkDeleteDtoBetaMediumBeta = typeof TemplateBulkDeleteDtoBetaMediumBeta[keyof typeof TemplateBulkDeleteDtoBetaMediumBeta];
|
|
30643
30750
|
/**
|
|
@@ -30734,21 +30841,19 @@ export interface TemplateDtoBeta {
|
|
|
30734
30841
|
'modified'?: string;
|
|
30735
30842
|
/**
|
|
30736
30843
|
*
|
|
30737
|
-
* @type {
|
|
30844
|
+
* @type {TemplateDtoSlackTemplateBeta}
|
|
30738
30845
|
* @memberof TemplateDtoBeta
|
|
30739
30846
|
*/
|
|
30740
|
-
'slackTemplate'?:
|
|
30847
|
+
'slackTemplate'?: TemplateDtoSlackTemplateBeta;
|
|
30741
30848
|
/**
|
|
30742
30849
|
*
|
|
30743
|
-
* @type {
|
|
30850
|
+
* @type {TemplateDtoTeamsTemplateBeta}
|
|
30744
30851
|
* @memberof TemplateDtoBeta
|
|
30745
30852
|
*/
|
|
30746
|
-
'teamsTemplate'?:
|
|
30853
|
+
'teamsTemplate'?: TemplateDtoTeamsTemplateBeta;
|
|
30747
30854
|
}
|
|
30748
30855
|
export declare const TemplateDtoBetaMediumBeta: {
|
|
30749
30856
|
readonly Email: "EMAIL";
|
|
30750
|
-
readonly Phone: "PHONE";
|
|
30751
|
-
readonly Sms: "SMS";
|
|
30752
30857
|
readonly Slack: "SLACK";
|
|
30753
30858
|
readonly Teams: "TEAMS";
|
|
30754
30859
|
};
|
|
@@ -30842,12 +30947,156 @@ export interface TemplateDtoDefaultBeta {
|
|
|
30842
30947
|
}
|
|
30843
30948
|
export declare const TemplateDtoDefaultBetaMediumBeta: {
|
|
30844
30949
|
readonly Email: "EMAIL";
|
|
30845
|
-
readonly Phone: "PHONE";
|
|
30846
|
-
readonly Sms: "SMS";
|
|
30847
30950
|
readonly Slack: "SLACK";
|
|
30848
30951
|
readonly Teams: "TEAMS";
|
|
30849
30952
|
};
|
|
30850
30953
|
export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMediumBeta[keyof typeof TemplateDtoDefaultBetaMediumBeta];
|
|
30954
|
+
/**
|
|
30955
|
+
*
|
|
30956
|
+
* @export
|
|
30957
|
+
* @interface TemplateDtoSlackTemplateBeta
|
|
30958
|
+
*/
|
|
30959
|
+
export interface TemplateDtoSlackTemplateBeta {
|
|
30960
|
+
/**
|
|
30961
|
+
* The template key
|
|
30962
|
+
* @type {string}
|
|
30963
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
30964
|
+
*/
|
|
30965
|
+
'key'?: string | null;
|
|
30966
|
+
/**
|
|
30967
|
+
* The main text content of the Slack message
|
|
30968
|
+
* @type {string}
|
|
30969
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
30970
|
+
*/
|
|
30971
|
+
'text'?: string;
|
|
30972
|
+
/**
|
|
30973
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
30974
|
+
* @type {string}
|
|
30975
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
30976
|
+
*/
|
|
30977
|
+
'blocks'?: string | null;
|
|
30978
|
+
/**
|
|
30979
|
+
* JSON string of Slack attachments
|
|
30980
|
+
* @type {string}
|
|
30981
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
30982
|
+
*/
|
|
30983
|
+
'attachments'?: string;
|
|
30984
|
+
/**
|
|
30985
|
+
* The type of notification
|
|
30986
|
+
* @type {string}
|
|
30987
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
30988
|
+
*/
|
|
30989
|
+
'notificationType'?: string | null;
|
|
30990
|
+
/**
|
|
30991
|
+
* The approval request ID
|
|
30992
|
+
* @type {string}
|
|
30993
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
30994
|
+
*/
|
|
30995
|
+
'approvalId'?: string | null;
|
|
30996
|
+
/**
|
|
30997
|
+
* The request ID
|
|
30998
|
+
* @type {string}
|
|
30999
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31000
|
+
*/
|
|
31001
|
+
'requestId'?: string | null;
|
|
31002
|
+
/**
|
|
31003
|
+
* The ID of the user who made the request
|
|
31004
|
+
* @type {string}
|
|
31005
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31006
|
+
*/
|
|
31007
|
+
'requestedById'?: string | null;
|
|
31008
|
+
/**
|
|
31009
|
+
* Whether this is a subscription notification
|
|
31010
|
+
* @type {boolean}
|
|
31011
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31012
|
+
*/
|
|
31013
|
+
'isSubscription'?: boolean | null;
|
|
31014
|
+
/**
|
|
31015
|
+
*
|
|
31016
|
+
* @type {TemplateSlackAutoApprovalDataBeta}
|
|
31017
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31018
|
+
*/
|
|
31019
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
|
|
31020
|
+
/**
|
|
31021
|
+
*
|
|
31022
|
+
* @type {TemplateSlackCustomFieldsBeta}
|
|
31023
|
+
* @memberof TemplateDtoSlackTemplateBeta
|
|
31024
|
+
*/
|
|
31025
|
+
'customFields'?: TemplateSlackCustomFieldsBeta | null;
|
|
31026
|
+
}
|
|
31027
|
+
/**
|
|
31028
|
+
*
|
|
31029
|
+
* @export
|
|
31030
|
+
* @interface TemplateDtoTeamsTemplateBeta
|
|
31031
|
+
*/
|
|
31032
|
+
export interface TemplateDtoTeamsTemplateBeta {
|
|
31033
|
+
/**
|
|
31034
|
+
* The template key
|
|
31035
|
+
* @type {string}
|
|
31036
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31037
|
+
*/
|
|
31038
|
+
'key'?: string | null;
|
|
31039
|
+
/**
|
|
31040
|
+
* The title of the Teams message
|
|
31041
|
+
* @type {string}
|
|
31042
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31043
|
+
*/
|
|
31044
|
+
'title'?: string | null;
|
|
31045
|
+
/**
|
|
31046
|
+
* The main text content of the Teams message
|
|
31047
|
+
* @type {string}
|
|
31048
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31049
|
+
*/
|
|
31050
|
+
'text'?: string;
|
|
31051
|
+
/**
|
|
31052
|
+
* JSON string of the Teams adaptive card
|
|
31053
|
+
* @type {string}
|
|
31054
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31055
|
+
*/
|
|
31056
|
+
'messageJSON'?: string | null;
|
|
31057
|
+
/**
|
|
31058
|
+
* Whether this is a subscription notification
|
|
31059
|
+
* @type {boolean}
|
|
31060
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31061
|
+
*/
|
|
31062
|
+
'isSubscription'?: boolean | null;
|
|
31063
|
+
/**
|
|
31064
|
+
* The approval request ID
|
|
31065
|
+
* @type {string}
|
|
31066
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31067
|
+
*/
|
|
31068
|
+
'approvalId'?: string | null;
|
|
31069
|
+
/**
|
|
31070
|
+
* The request ID
|
|
31071
|
+
* @type {string}
|
|
31072
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31073
|
+
*/
|
|
31074
|
+
'requestId'?: string | null;
|
|
31075
|
+
/**
|
|
31076
|
+
* The ID of the user who made the request
|
|
31077
|
+
* @type {string}
|
|
31078
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31079
|
+
*/
|
|
31080
|
+
'requestedById'?: string | null;
|
|
31081
|
+
/**
|
|
31082
|
+
* The type of notification
|
|
31083
|
+
* @type {string}
|
|
31084
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31085
|
+
*/
|
|
31086
|
+
'notificationType'?: string | null;
|
|
31087
|
+
/**
|
|
31088
|
+
*
|
|
31089
|
+
* @type {TemplateSlackAutoApprovalDataBeta}
|
|
31090
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31091
|
+
*/
|
|
31092
|
+
'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
|
|
31093
|
+
/**
|
|
31094
|
+
*
|
|
31095
|
+
* @type {TemplateSlackCustomFieldsBeta}
|
|
31096
|
+
* @memberof TemplateDtoTeamsTemplateBeta
|
|
31097
|
+
*/
|
|
31098
|
+
'customFields'?: TemplateSlackCustomFieldsBeta | null;
|
|
31099
|
+
}
|
|
30851
31100
|
/**
|
|
30852
31101
|
*
|
|
30853
31102
|
* @export
|
|
@@ -30855,31 +31104,31 @@ export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMedi
|
|
|
30855
31104
|
*/
|
|
30856
31105
|
export interface TemplateSlackAutoApprovalDataBeta {
|
|
30857
31106
|
/**
|
|
30858
|
-
*
|
|
31107
|
+
* Whether the request was auto-approved
|
|
30859
31108
|
* @type {string}
|
|
30860
31109
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
30861
31110
|
*/
|
|
30862
31111
|
'isAutoApproved'?: string | null;
|
|
30863
31112
|
/**
|
|
30864
|
-
*
|
|
31113
|
+
* The item ID
|
|
30865
31114
|
* @type {string}
|
|
30866
31115
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
30867
31116
|
*/
|
|
30868
31117
|
'itemId'?: string | null;
|
|
30869
31118
|
/**
|
|
30870
|
-
*
|
|
31119
|
+
* The item type
|
|
30871
31120
|
* @type {string}
|
|
30872
31121
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
30873
31122
|
*/
|
|
30874
31123
|
'itemType'?: string | null;
|
|
30875
31124
|
/**
|
|
30876
|
-
*
|
|
31125
|
+
* JSON message for auto-approval
|
|
30877
31126
|
* @type {string}
|
|
30878
31127
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
30879
31128
|
*/
|
|
30880
31129
|
'autoApprovalMessageJSON'?: string | null;
|
|
30881
31130
|
/**
|
|
30882
|
-
*
|
|
31131
|
+
* Title for auto-approval
|
|
30883
31132
|
* @type {string}
|
|
30884
31133
|
* @memberof TemplateSlackAutoApprovalDataBeta
|
|
30885
31134
|
*/
|
|
@@ -30892,55 +31141,55 @@ export interface TemplateSlackAutoApprovalDataBeta {
|
|
|
30892
31141
|
*/
|
|
30893
31142
|
export interface TemplateSlackBeta {
|
|
30894
31143
|
/**
|
|
30895
|
-
*
|
|
31144
|
+
* The template key
|
|
30896
31145
|
* @type {string}
|
|
30897
31146
|
* @memberof TemplateSlackBeta
|
|
30898
31147
|
*/
|
|
30899
31148
|
'key'?: string | null;
|
|
30900
31149
|
/**
|
|
30901
|
-
*
|
|
31150
|
+
* The main text content of the Slack message
|
|
30902
31151
|
* @type {string}
|
|
30903
31152
|
* @memberof TemplateSlackBeta
|
|
30904
31153
|
*/
|
|
30905
31154
|
'text'?: string;
|
|
30906
31155
|
/**
|
|
30907
|
-
*
|
|
31156
|
+
* JSON string of Slack Block Kit blocks for rich formatting
|
|
30908
31157
|
* @type {string}
|
|
30909
31158
|
* @memberof TemplateSlackBeta
|
|
30910
31159
|
*/
|
|
30911
31160
|
'blocks'?: string | null;
|
|
30912
31161
|
/**
|
|
30913
|
-
*
|
|
31162
|
+
* JSON string of Slack attachments
|
|
30914
31163
|
* @type {string}
|
|
30915
31164
|
* @memberof TemplateSlackBeta
|
|
30916
31165
|
*/
|
|
30917
31166
|
'attachments'?: string;
|
|
30918
31167
|
/**
|
|
30919
|
-
*
|
|
31168
|
+
* The type of notification
|
|
30920
31169
|
* @type {string}
|
|
30921
31170
|
* @memberof TemplateSlackBeta
|
|
30922
31171
|
*/
|
|
30923
31172
|
'notificationType'?: string | null;
|
|
30924
31173
|
/**
|
|
30925
|
-
*
|
|
31174
|
+
* The approval request ID
|
|
30926
31175
|
* @type {string}
|
|
30927
31176
|
* @memberof TemplateSlackBeta
|
|
30928
31177
|
*/
|
|
30929
31178
|
'approvalId'?: string | null;
|
|
30930
31179
|
/**
|
|
30931
|
-
*
|
|
31180
|
+
* The request ID
|
|
30932
31181
|
* @type {string}
|
|
30933
31182
|
* @memberof TemplateSlackBeta
|
|
30934
31183
|
*/
|
|
30935
31184
|
'requestId'?: string | null;
|
|
30936
31185
|
/**
|
|
30937
|
-
*
|
|
31186
|
+
* The ID of the user who made the request
|
|
30938
31187
|
* @type {string}
|
|
30939
31188
|
* @memberof TemplateSlackBeta
|
|
30940
31189
|
*/
|
|
30941
31190
|
'requestedById'?: string | null;
|
|
30942
31191
|
/**
|
|
30943
|
-
*
|
|
31192
|
+
* Whether this is a subscription notification
|
|
30944
31193
|
* @type {boolean}
|
|
30945
31194
|
* @memberof TemplateSlackBeta
|
|
30946
31195
|
*/
|
|
@@ -30965,25 +31214,25 @@ export interface TemplateSlackBeta {
|
|
|
30965
31214
|
*/
|
|
30966
31215
|
export interface TemplateSlackCustomFieldsBeta {
|
|
30967
31216
|
/**
|
|
30968
|
-
*
|
|
31217
|
+
* The type of request
|
|
30969
31218
|
* @type {string}
|
|
30970
31219
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
30971
31220
|
*/
|
|
30972
31221
|
'requestType'?: string | null;
|
|
30973
31222
|
/**
|
|
30974
|
-
*
|
|
31223
|
+
* Whether the request contains a deny action
|
|
30975
31224
|
* @type {string}
|
|
30976
31225
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
30977
31226
|
*/
|
|
30978
31227
|
'containsDeny'?: string | null;
|
|
30979
31228
|
/**
|
|
30980
|
-
*
|
|
31229
|
+
* The campaign ID
|
|
30981
31230
|
* @type {string}
|
|
30982
31231
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
30983
31232
|
*/
|
|
30984
31233
|
'campaignId'?: string | null;
|
|
30985
31234
|
/**
|
|
30986
|
-
*
|
|
31235
|
+
* The campaign status
|
|
30987
31236
|
* @type {string}
|
|
30988
31237
|
* @memberof TemplateSlackCustomFieldsBeta
|
|
30989
31238
|
*/
|
|
@@ -30996,55 +31245,55 @@ export interface TemplateSlackCustomFieldsBeta {
|
|
|
30996
31245
|
*/
|
|
30997
31246
|
export interface TemplateTeamsBeta {
|
|
30998
31247
|
/**
|
|
30999
|
-
*
|
|
31248
|
+
* The template key
|
|
31000
31249
|
* @type {string}
|
|
31001
31250
|
* @memberof TemplateTeamsBeta
|
|
31002
31251
|
*/
|
|
31003
31252
|
'key'?: string | null;
|
|
31004
31253
|
/**
|
|
31005
|
-
*
|
|
31254
|
+
* The title of the Teams message
|
|
31006
31255
|
* @type {string}
|
|
31007
31256
|
* @memberof TemplateTeamsBeta
|
|
31008
31257
|
*/
|
|
31009
31258
|
'title'?: string | null;
|
|
31010
31259
|
/**
|
|
31011
|
-
*
|
|
31260
|
+
* The main text content of the Teams message
|
|
31012
31261
|
* @type {string}
|
|
31013
31262
|
* @memberof TemplateTeamsBeta
|
|
31014
31263
|
*/
|
|
31015
31264
|
'text'?: string;
|
|
31016
31265
|
/**
|
|
31017
|
-
*
|
|
31266
|
+
* JSON string of the Teams adaptive card
|
|
31018
31267
|
* @type {string}
|
|
31019
31268
|
* @memberof TemplateTeamsBeta
|
|
31020
31269
|
*/
|
|
31021
31270
|
'messageJSON'?: string | null;
|
|
31022
31271
|
/**
|
|
31023
|
-
*
|
|
31272
|
+
* Whether this is a subscription notification
|
|
31024
31273
|
* @type {boolean}
|
|
31025
31274
|
* @memberof TemplateTeamsBeta
|
|
31026
31275
|
*/
|
|
31027
31276
|
'isSubscription'?: boolean | null;
|
|
31028
31277
|
/**
|
|
31029
|
-
*
|
|
31278
|
+
* The approval request ID
|
|
31030
31279
|
* @type {string}
|
|
31031
31280
|
* @memberof TemplateTeamsBeta
|
|
31032
31281
|
*/
|
|
31033
31282
|
'approvalId'?: string | null;
|
|
31034
31283
|
/**
|
|
31035
|
-
*
|
|
31284
|
+
* The request ID
|
|
31036
31285
|
* @type {string}
|
|
31037
31286
|
* @memberof TemplateTeamsBeta
|
|
31038
31287
|
*/
|
|
31039
31288
|
'requestId'?: string | null;
|
|
31040
31289
|
/**
|
|
31041
|
-
*
|
|
31290
|
+
* The ID of the user who made the request
|
|
31042
31291
|
* @type {string}
|
|
31043
31292
|
* @memberof TemplateTeamsBeta
|
|
31044
31293
|
*/
|
|
31045
31294
|
'requestedById'?: string | null;
|
|
31046
31295
|
/**
|
|
31047
|
-
*
|
|
31296
|
+
* The type of notification
|
|
31048
31297
|
* @type {string}
|
|
31049
31298
|
* @memberof TemplateTeamsBeta
|
|
31050
31299
|
*/
|
|
@@ -53275,7 +53524,7 @@ export declare const NotificationsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
53275
53524
|
*/
|
|
53276
53525
|
createVerifiedFromAddress: (emailStatusDtoBeta: EmailStatusDtoBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
53277
53526
|
/**
|
|
53278
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
53527
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
53279
53528
|
* @summary Bulk delete notification templates
|
|
53280
53529
|
* @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
|
|
53281
53530
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53408,7 +53657,7 @@ export declare const NotificationsBetaApiFp: (configuration?: Configuration) =>
|
|
|
53408
53657
|
*/
|
|
53409
53658
|
createVerifiedFromAddress(emailStatusDtoBeta: EmailStatusDtoBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailStatusDtoBeta>>;
|
|
53410
53659
|
/**
|
|
53411
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
53660
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
53412
53661
|
* @summary Bulk delete notification templates
|
|
53413
53662
|
* @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
|
|
53414
53663
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53541,7 +53790,7 @@ export declare const NotificationsBetaApiFactory: (configuration?: Configuration
|
|
|
53541
53790
|
*/
|
|
53542
53791
|
createVerifiedFromAddress(requestParameters: NotificationsBetaApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EmailStatusDtoBeta>;
|
|
53543
53792
|
/**
|
|
53544
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
53793
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
53545
53794
|
* @summary Bulk delete notification templates
|
|
53546
53795
|
* @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
53547
53796
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53893,7 +54142,7 @@ export declare class NotificationsBetaApi extends BaseAPI {
|
|
|
53893
54142
|
*/
|
|
53894
54143
|
createVerifiedFromAddress(requestParameters: NotificationsBetaApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailStatusDtoBeta, any>>;
|
|
53895
54144
|
/**
|
|
53896
|
-
* This lets you bulk delete templates that you previously created for your site.
|
|
54145
|
+
* This lets you bulk delete templates that you previously created for your site.
|
|
53897
54146
|
* @summary Bulk delete notification templates
|
|
53898
54147
|
* @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
|
|
53899
54148
|
* @param {*} [axiosOptions] Override http request option.
|