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 CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.3
1
+ ## sailpoint-sdk@1.8.5
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.3 --save
39
+ npm install sailpoint-sdk@1.8.5 --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 Success, Failed, Pending
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 {object}
9806
+ * @type {boolean}
9801
9807
  * @memberof DomainStatusDtoBeta
9802
9808
  */
9803
- 'dkimEnabled'?: object;
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 | null;
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];
@@ -10146,6 +10165,12 @@ export interface EntitlementBeta {
10146
10165
  * @memberof EntitlementBeta
10147
10166
  */
10148
10167
  'owner'?: EntitlementOwnerBeta;
10168
+ /**
10169
+ * List of additional owner references beyond the primary owner. Each entry may be an identity (IDENTITY) or a governance group (GOVERNANCE_GROUP).
10170
+ * @type {Array<AdditionalOwnerRefBeta>}
10171
+ * @memberof EntitlementBeta
10172
+ */
10173
+ 'additionalOwners'?: Array<AdditionalOwnerRefBeta> | null;
10149
10174
  /**
10150
10175
  *
10151
10176
  * @type {Array<PermissionDtoBeta>}
@@ -12110,7 +12135,40 @@ export interface FullDiscoveredApplicationsBeta {
12110
12135
  * @memberof FullDiscoveredApplicationsBeta
12111
12136
  */
12112
12137
  'associatedSources'?: Array<string>;
12138
+ /**
12139
+ * The risk score of the application ranging from 0-100, 100 being highest risk.
12140
+ * @type {number}
12141
+ * @memberof FullDiscoveredApplicationsBeta
12142
+ */
12143
+ 'riskScore'?: number;
12144
+ /**
12145
+ * Indicates whether the application is used for business purposes.
12146
+ * @type {boolean}
12147
+ * @memberof FullDiscoveredApplicationsBeta
12148
+ */
12149
+ 'isBusiness'?: boolean;
12150
+ /**
12151
+ * The total number of sign-in accounts for the application.
12152
+ * @type {number}
12153
+ * @memberof FullDiscoveredApplicationsBeta
12154
+ */
12155
+ 'totalSigninsCount'?: number;
12156
+ /**
12157
+ * The risk level of the application.
12158
+ * @type {string}
12159
+ * @memberof FullDiscoveredApplicationsBeta
12160
+ */
12161
+ 'riskLevel'?: FullDiscoveredApplicationsBetaRiskLevelBeta;
12113
12162
  }
12163
+
12164
+ export const FullDiscoveredApplicationsBetaRiskLevelBeta = {
12165
+ High: 'High',
12166
+ Medium: 'Medium',
12167
+ Low: 'Low'
12168
+ } as const;
12169
+
12170
+ export type FullDiscoveredApplicationsBetaRiskLevelBeta = typeof FullDiscoveredApplicationsBetaRiskLevelBeta[keyof typeof FullDiscoveredApplicationsBetaRiskLevelBeta];
12171
+
12114
12172
  /**
12115
12173
  * Determines which items will be included in this campaign. The default campaign filter is used if this field is left blank.
12116
12174
  * @export
@@ -17767,15 +17825,13 @@ export interface MatchTermBeta {
17767
17825
  'children'?: Array<{ [key: string]: any; }> | null;
17768
17826
  }
17769
17827
  /**
17770
- *
17828
+ * The notification medium (EMAIL, SLACK, or TEAMS)
17771
17829
  * @export
17772
17830
  * @enum {string}
17773
17831
  */
17774
17832
 
17775
17833
  export const MediumBeta = {
17776
17834
  Email: 'EMAIL',
17777
- Sms: 'SMS',
17778
- Phone: 'PHONE',
17779
17835
  Slack: 'SLACK',
17780
17836
  Teams: 'TEAMS'
17781
17837
  } as const;
@@ -27552,12 +27608,36 @@ export interface SendTestNotificationRequestDtoBeta {
27552
27608
  * @memberof SendTestNotificationRequestDtoBeta
27553
27609
  */
27554
27610
  'medium'?: SendTestNotificationRequestDtoBetaMediumBeta;
27611
+ /**
27612
+ * The locale for the message text.
27613
+ * @type {string}
27614
+ * @memberof SendTestNotificationRequestDtoBeta
27615
+ */
27616
+ 'locale'?: string;
27555
27617
  /**
27556
27618
  * A Json object that denotes the context specific to the template.
27557
27619
  * @type {object}
27558
27620
  * @memberof SendTestNotificationRequestDtoBeta
27559
27621
  */
27560
27622
  'context'?: object;
27623
+ /**
27624
+ * A list of override recipient email addresses for the test notification.
27625
+ * @type {Array<string>}
27626
+ * @memberof SendTestNotificationRequestDtoBeta
27627
+ */
27628
+ 'recipientEmailList'?: Array<string>;
27629
+ /**
27630
+ * A list of CC email addresses for the test notification.
27631
+ * @type {Array<string>}
27632
+ * @memberof SendTestNotificationRequestDtoBeta
27633
+ */
27634
+ 'carbonCopy'?: Array<string>;
27635
+ /**
27636
+ * A list of BCC email addresses for the test notification.
27637
+ * @type {Array<string>}
27638
+ * @memberof SendTestNotificationRequestDtoBeta
27639
+ */
27640
+ 'blindCarbonCopy'?: Array<string>;
27561
27641
  }
27562
27642
 
27563
27643
  export const SendTestNotificationRequestDtoBetaMediumBeta = {
@@ -27999,7 +28079,40 @@ export interface SlimDiscoveredApplicationsBeta {
27999
28079
  * @memberof SlimDiscoveredApplicationsBeta
28000
28080
  */
28001
28081
  'status'?: string;
28082
+ /**
28083
+ * The risk score of the application ranging from 0-100, 100 being highest risk.
28084
+ * @type {number}
28085
+ * @memberof SlimDiscoveredApplicationsBeta
28086
+ */
28087
+ 'riskScore'?: number;
28088
+ /**
28089
+ * Indicates whether the application is used for business purposes.
28090
+ * @type {boolean}
28091
+ * @memberof SlimDiscoveredApplicationsBeta
28092
+ */
28093
+ 'isBusiness'?: boolean;
28094
+ /**
28095
+ * The total number of sign-in accounts for the application.
28096
+ * @type {number}
28097
+ * @memberof SlimDiscoveredApplicationsBeta
28098
+ */
28099
+ 'totalSigninsCount'?: number;
28100
+ /**
28101
+ * The risk level of the application.
28102
+ * @type {string}
28103
+ * @memberof SlimDiscoveredApplicationsBeta
28104
+ */
28105
+ 'riskLevel'?: SlimDiscoveredApplicationsBetaRiskLevelBeta;
28002
28106
  }
28107
+
28108
+ export const SlimDiscoveredApplicationsBetaRiskLevelBeta = {
28109
+ High: 'High',
28110
+ Medium: 'Medium',
28111
+ Low: 'Low'
28112
+ } as const;
28113
+
28114
+ export type SlimDiscoveredApplicationsBetaRiskLevelBeta = typeof SlimDiscoveredApplicationsBetaRiskLevelBeta[keyof typeof SlimDiscoveredApplicationsBetaRiskLevelBeta];
28115
+
28003
28116
  /**
28004
28117
  *
28005
28118
  * @export
@@ -31631,13 +31744,13 @@ export interface TaskStatusMessageParametersInnerBeta {
31631
31744
  */
31632
31745
  export interface TemplateBulkDeleteDtoBeta {
31633
31746
  /**
31634
- *
31747
+ * The template key to delete
31635
31748
  * @type {string}
31636
31749
  * @memberof TemplateBulkDeleteDtoBeta
31637
31750
  */
31638
31751
  'key': string;
31639
31752
  /**
31640
- *
31753
+ * The notification medium (EMAIL, SLACK, or TEAMS)
31641
31754
  * @type {string}
31642
31755
  * @memberof TemplateBulkDeleteDtoBeta
31643
31756
  */
@@ -31652,8 +31765,8 @@ export interface TemplateBulkDeleteDtoBeta {
31652
31765
 
31653
31766
  export const TemplateBulkDeleteDtoBetaMediumBeta = {
31654
31767
  Email: 'EMAIL',
31655
- Phone: 'PHONE',
31656
- Sms: 'SMS'
31768
+ Slack: 'SLACK',
31769
+ Teams: 'TEAMS'
31657
31770
  } as const;
31658
31771
 
31659
31772
  export type TemplateBulkDeleteDtoBetaMediumBeta = typeof TemplateBulkDeleteDtoBetaMediumBeta[keyof typeof TemplateBulkDeleteDtoBetaMediumBeta];
@@ -31752,22 +31865,20 @@ export interface TemplateDtoBeta {
31752
31865
  'modified'?: string;
31753
31866
  /**
31754
31867
  *
31755
- * @type {string}
31868
+ * @type {TemplateDtoSlackTemplateBeta}
31756
31869
  * @memberof TemplateDtoBeta
31757
31870
  */
31758
- 'slackTemplate'?: string | null;
31871
+ 'slackTemplate'?: TemplateDtoSlackTemplateBeta;
31759
31872
  /**
31760
31873
  *
31761
- * @type {string}
31874
+ * @type {TemplateDtoTeamsTemplateBeta}
31762
31875
  * @memberof TemplateDtoBeta
31763
31876
  */
31764
- 'teamsTemplate'?: string | null;
31877
+ 'teamsTemplate'?: TemplateDtoTeamsTemplateBeta;
31765
31878
  }
31766
31879
 
31767
31880
  export const TemplateDtoBetaMediumBeta = {
31768
31881
  Email: 'EMAIL',
31769
- Phone: 'PHONE',
31770
- Sms: 'SMS',
31771
31882
  Slack: 'SLACK',
31772
31883
  Teams: 'TEAMS'
31773
31884
  } as const;
@@ -31864,14 +31975,158 @@ export interface TemplateDtoDefaultBeta {
31864
31975
 
31865
31976
  export const TemplateDtoDefaultBetaMediumBeta = {
31866
31977
  Email: 'EMAIL',
31867
- Phone: 'PHONE',
31868
- Sms: 'SMS',
31869
31978
  Slack: 'SLACK',
31870
31979
  Teams: 'TEAMS'
31871
31980
  } as const;
31872
31981
 
31873
31982
  export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMediumBeta[keyof typeof TemplateDtoDefaultBetaMediumBeta];
31874
31983
 
31984
+ /**
31985
+ *
31986
+ * @export
31987
+ * @interface TemplateDtoSlackTemplateBeta
31988
+ */
31989
+ export interface TemplateDtoSlackTemplateBeta {
31990
+ /**
31991
+ * The template key
31992
+ * @type {string}
31993
+ * @memberof TemplateDtoSlackTemplateBeta
31994
+ */
31995
+ 'key'?: string | null;
31996
+ /**
31997
+ * The main text content of the Slack message
31998
+ * @type {string}
31999
+ * @memberof TemplateDtoSlackTemplateBeta
32000
+ */
32001
+ 'text'?: string;
32002
+ /**
32003
+ * JSON string of Slack Block Kit blocks for rich formatting
32004
+ * @type {string}
32005
+ * @memberof TemplateDtoSlackTemplateBeta
32006
+ */
32007
+ 'blocks'?: string | null;
32008
+ /**
32009
+ * JSON string of Slack attachments
32010
+ * @type {string}
32011
+ * @memberof TemplateDtoSlackTemplateBeta
32012
+ */
32013
+ 'attachments'?: string;
32014
+ /**
32015
+ * The type of notification
32016
+ * @type {string}
32017
+ * @memberof TemplateDtoSlackTemplateBeta
32018
+ */
32019
+ 'notificationType'?: string | null;
32020
+ /**
32021
+ * The approval request ID
32022
+ * @type {string}
32023
+ * @memberof TemplateDtoSlackTemplateBeta
32024
+ */
32025
+ 'approvalId'?: string | null;
32026
+ /**
32027
+ * The request ID
32028
+ * @type {string}
32029
+ * @memberof TemplateDtoSlackTemplateBeta
32030
+ */
32031
+ 'requestId'?: string | null;
32032
+ /**
32033
+ * The ID of the user who made the request
32034
+ * @type {string}
32035
+ * @memberof TemplateDtoSlackTemplateBeta
32036
+ */
32037
+ 'requestedById'?: string | null;
32038
+ /**
32039
+ * Whether this is a subscription notification
32040
+ * @type {boolean}
32041
+ * @memberof TemplateDtoSlackTemplateBeta
32042
+ */
32043
+ 'isSubscription'?: boolean | null;
32044
+ /**
32045
+ *
32046
+ * @type {TemplateSlackAutoApprovalDataBeta}
32047
+ * @memberof TemplateDtoSlackTemplateBeta
32048
+ */
32049
+ 'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
32050
+ /**
32051
+ *
32052
+ * @type {TemplateSlackCustomFieldsBeta}
32053
+ * @memberof TemplateDtoSlackTemplateBeta
32054
+ */
32055
+ 'customFields'?: TemplateSlackCustomFieldsBeta | null;
32056
+ }
32057
+ /**
32058
+ *
32059
+ * @export
32060
+ * @interface TemplateDtoTeamsTemplateBeta
32061
+ */
32062
+ export interface TemplateDtoTeamsTemplateBeta {
32063
+ /**
32064
+ * The template key
32065
+ * @type {string}
32066
+ * @memberof TemplateDtoTeamsTemplateBeta
32067
+ */
32068
+ 'key'?: string | null;
32069
+ /**
32070
+ * The title of the Teams message
32071
+ * @type {string}
32072
+ * @memberof TemplateDtoTeamsTemplateBeta
32073
+ */
32074
+ 'title'?: string | null;
32075
+ /**
32076
+ * The main text content of the Teams message
32077
+ * @type {string}
32078
+ * @memberof TemplateDtoTeamsTemplateBeta
32079
+ */
32080
+ 'text'?: string;
32081
+ /**
32082
+ * JSON string of the Teams adaptive card
32083
+ * @type {string}
32084
+ * @memberof TemplateDtoTeamsTemplateBeta
32085
+ */
32086
+ 'messageJSON'?: string | null;
32087
+ /**
32088
+ * Whether this is a subscription notification
32089
+ * @type {boolean}
32090
+ * @memberof TemplateDtoTeamsTemplateBeta
32091
+ */
32092
+ 'isSubscription'?: boolean | null;
32093
+ /**
32094
+ * The approval request ID
32095
+ * @type {string}
32096
+ * @memberof TemplateDtoTeamsTemplateBeta
32097
+ */
32098
+ 'approvalId'?: string | null;
32099
+ /**
32100
+ * The request ID
32101
+ * @type {string}
32102
+ * @memberof TemplateDtoTeamsTemplateBeta
32103
+ */
32104
+ 'requestId'?: string | null;
32105
+ /**
32106
+ * The ID of the user who made the request
32107
+ * @type {string}
32108
+ * @memberof TemplateDtoTeamsTemplateBeta
32109
+ */
32110
+ 'requestedById'?: string | null;
32111
+ /**
32112
+ * The type of notification
32113
+ * @type {string}
32114
+ * @memberof TemplateDtoTeamsTemplateBeta
32115
+ */
32116
+ 'notificationType'?: string | null;
32117
+ /**
32118
+ *
32119
+ * @type {TemplateSlackAutoApprovalDataBeta}
32120
+ * @memberof TemplateDtoTeamsTemplateBeta
32121
+ */
32122
+ 'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
32123
+ /**
32124
+ *
32125
+ * @type {TemplateSlackCustomFieldsBeta}
32126
+ * @memberof TemplateDtoTeamsTemplateBeta
32127
+ */
32128
+ 'customFields'?: TemplateSlackCustomFieldsBeta | null;
32129
+ }
31875
32130
  /**
31876
32131
  *
31877
32132
  * @export
@@ -31879,31 +32134,31 @@ export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMedi
31879
32134
  */
31880
32135
  export interface TemplateSlackAutoApprovalDataBeta {
31881
32136
  /**
31882
- *
32137
+ * Whether the request was auto-approved
31883
32138
  * @type {string}
31884
32139
  * @memberof TemplateSlackAutoApprovalDataBeta
31885
32140
  */
31886
32141
  'isAutoApproved'?: string | null;
31887
32142
  /**
31888
- *
32143
+ * The item ID
31889
32144
  * @type {string}
31890
32145
  * @memberof TemplateSlackAutoApprovalDataBeta
31891
32146
  */
31892
32147
  'itemId'?: string | null;
31893
32148
  /**
31894
- *
32149
+ * The item type
31895
32150
  * @type {string}
31896
32151
  * @memberof TemplateSlackAutoApprovalDataBeta
31897
32152
  */
31898
32153
  'itemType'?: string | null;
31899
32154
  /**
31900
- *
32155
+ * JSON message for auto-approval
31901
32156
  * @type {string}
31902
32157
  * @memberof TemplateSlackAutoApprovalDataBeta
31903
32158
  */
31904
32159
  'autoApprovalMessageJSON'?: string | null;
31905
32160
  /**
31906
- *
32161
+ * Title for auto-approval
31907
32162
  * @type {string}
31908
32163
  * @memberof TemplateSlackAutoApprovalDataBeta
31909
32164
  */
@@ -31916,55 +32171,55 @@ export interface TemplateSlackAutoApprovalDataBeta {
31916
32171
  */
31917
32172
  export interface TemplateSlackBeta {
31918
32173
  /**
31919
- *
32174
+ * The template key
31920
32175
  * @type {string}
31921
32176
  * @memberof TemplateSlackBeta
31922
32177
  */
31923
32178
  'key'?: string | null;
31924
32179
  /**
31925
- *
32180
+ * The main text content of the Slack message
31926
32181
  * @type {string}
31927
32182
  * @memberof TemplateSlackBeta
31928
32183
  */
31929
32184
  'text'?: string;
31930
32185
  /**
31931
- *
32186
+ * JSON string of Slack Block Kit blocks for rich formatting
31932
32187
  * @type {string}
31933
32188
  * @memberof TemplateSlackBeta
31934
32189
  */
31935
32190
  'blocks'?: string | null;
31936
32191
  /**
31937
- *
32192
+ * JSON string of Slack attachments
31938
32193
  * @type {string}
31939
32194
  * @memberof TemplateSlackBeta
31940
32195
  */
31941
32196
  'attachments'?: string;
31942
32197
  /**
31943
- *
32198
+ * The type of notification
31944
32199
  * @type {string}
31945
32200
  * @memberof TemplateSlackBeta
31946
32201
  */
31947
32202
  'notificationType'?: string | null;
31948
32203
  /**
31949
- *
32204
+ * The approval request ID
31950
32205
  * @type {string}
31951
32206
  * @memberof TemplateSlackBeta
31952
32207
  */
31953
32208
  'approvalId'?: string | null;
31954
32209
  /**
31955
- *
32210
+ * The request ID
31956
32211
  * @type {string}
31957
32212
  * @memberof TemplateSlackBeta
31958
32213
  */
31959
32214
  'requestId'?: string | null;
31960
32215
  /**
31961
- *
32216
+ * The ID of the user who made the request
31962
32217
  * @type {string}
31963
32218
  * @memberof TemplateSlackBeta
31964
32219
  */
31965
32220
  'requestedById'?: string | null;
31966
32221
  /**
31967
- *
32222
+ * Whether this is a subscription notification
31968
32223
  * @type {boolean}
31969
32224
  * @memberof TemplateSlackBeta
31970
32225
  */
@@ -31989,25 +32244,25 @@ export interface TemplateSlackBeta {
31989
32244
  */
31990
32245
  export interface TemplateSlackCustomFieldsBeta {
31991
32246
  /**
31992
- *
32247
+ * The type of request
31993
32248
  * @type {string}
31994
32249
  * @memberof TemplateSlackCustomFieldsBeta
31995
32250
  */
31996
32251
  'requestType'?: string | null;
31997
32252
  /**
31998
- *
32253
+ * Whether the request contains a deny action
31999
32254
  * @type {string}
32000
32255
  * @memberof TemplateSlackCustomFieldsBeta
32001
32256
  */
32002
32257
  'containsDeny'?: string | null;
32003
32258
  /**
32004
- *
32259
+ * The campaign ID
32005
32260
  * @type {string}
32006
32261
  * @memberof TemplateSlackCustomFieldsBeta
32007
32262
  */
32008
32263
  'campaignId'?: string | null;
32009
32264
  /**
32010
- *
32265
+ * The campaign status
32011
32266
  * @type {string}
32012
32267
  * @memberof TemplateSlackCustomFieldsBeta
32013
32268
  */
@@ -32020,55 +32275,55 @@ export interface TemplateSlackCustomFieldsBeta {
32020
32275
  */
32021
32276
  export interface TemplateTeamsBeta {
32022
32277
  /**
32023
- *
32278
+ * The template key
32024
32279
  * @type {string}
32025
32280
  * @memberof TemplateTeamsBeta
32026
32281
  */
32027
32282
  'key'?: string | null;
32028
32283
  /**
32029
- *
32284
+ * The title of the Teams message
32030
32285
  * @type {string}
32031
32286
  * @memberof TemplateTeamsBeta
32032
32287
  */
32033
32288
  'title'?: string | null;
32034
32289
  /**
32035
- *
32290
+ * The main text content of the Teams message
32036
32291
  * @type {string}
32037
32292
  * @memberof TemplateTeamsBeta
32038
32293
  */
32039
32294
  'text'?: string;
32040
32295
  /**
32041
- *
32296
+ * JSON string of the Teams adaptive card
32042
32297
  * @type {string}
32043
32298
  * @memberof TemplateTeamsBeta
32044
32299
  */
32045
32300
  'messageJSON'?: string | null;
32046
32301
  /**
32047
- *
32302
+ * Whether this is a subscription notification
32048
32303
  * @type {boolean}
32049
32304
  * @memberof TemplateTeamsBeta
32050
32305
  */
32051
32306
  'isSubscription'?: boolean | null;
32052
32307
  /**
32053
- *
32308
+ * The approval request ID
32054
32309
  * @type {string}
32055
32310
  * @memberof TemplateTeamsBeta
32056
32311
  */
32057
32312
  'approvalId'?: string | null;
32058
32313
  /**
32059
- *
32314
+ * The request ID
32060
32315
  * @type {string}
32061
32316
  * @memberof TemplateTeamsBeta
32062
32317
  */
32063
32318
  'requestId'?: string | null;
32064
32319
  /**
32065
- *
32320
+ * The ID of the user who made the request
32066
32321
  * @type {string}
32067
32322
  * @memberof TemplateTeamsBeta
32068
32323
  */
32069
32324
  'requestedById'?: string | null;
32070
32325
  /**
32071
- *
32326
+ * The type of notification
32072
32327
  * @type {string}
32073
32328
  * @memberof TemplateTeamsBeta
32074
32329
  */
@@ -72204,7 +72459,7 @@ export const NotificationsBetaApiAxiosParamCreator = function (configuration?: C
72204
72459
  };
72205
72460
  },
72206
72461
  /**
72207
- * This lets you bulk delete templates that you previously created for your site. Since this is a beta feature, please contact support to enable usage.
72462
+ * This lets you bulk delete templates that you previously created for your site.
72208
72463
  * @summary Bulk delete notification templates
72209
72464
  * @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
72210
72465
  * @param {*} [axiosOptions] Override http request option.
@@ -72803,7 +73058,7 @@ export const NotificationsBetaApiFp = function(configuration?: Configuration) {
72803
73058
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
72804
73059
  },
72805
73060
  /**
72806
- * This lets you bulk delete templates that you previously created for your site. Since this is a beta feature, please contact support to enable usage.
73061
+ * This lets you bulk delete templates that you previously created for your site.
72807
73062
  * @summary Bulk delete notification templates
72808
73063
  * @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
72809
73064
  * @param {*} [axiosOptions] Override http request option.
@@ -73006,7 +73261,7 @@ export const NotificationsBetaApiFactory = function (configuration?: Configurati
73006
73261
  return localVarFp.createVerifiedFromAddress(requestParameters.emailStatusDtoBeta, axiosOptions).then((request) => request(axios, basePath));
73007
73262
  },
73008
73263
  /**
73009
- * This lets you bulk delete templates that you previously created for your site. Since this is a beta feature, please contact support to enable usage.
73264
+ * This lets you bulk delete templates that you previously created for your site.
73010
73265
  * @summary Bulk delete notification templates
73011
73266
  * @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
73012
73267
  * @param {*} [axiosOptions] Override http request option.
@@ -73415,7 +73670,7 @@ export class NotificationsBetaApi extends BaseAPI {
73415
73670
  }
73416
73671
 
73417
73672
  /**
73418
- * This lets you bulk delete templates that you previously created for your site. Since this is a beta feature, please contact support to enable usage.
73673
+ * This lets you bulk delete templates that you previously created for your site.
73419
73674
  * @summary Bulk delete notification templates
73420
73675
  * @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
73421
73676
  * @param {*} [axiosOptions] Override http request option.