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.
@@ -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 Success, Failed, Pending
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 {object}
9423
+ * @type {boolean}
9418
9424
  * @memberof DomainStatusDtoBeta
9419
9425
  */
9420
- 'dkimEnabled'?: object;
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;
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
  /**
@@ -17145,14 +17164,12 @@ export interface MatchTermBeta {
17145
17164
  }> | null;
17146
17165
  }
17147
17166
  /**
17148
- *
17167
+ * The notification medium (EMAIL, SLACK, or TEAMS)
17149
17168
  * @export
17150
17169
  * @enum {string}
17151
17170
  */
17152
17171
  export declare const MediumBeta: {
17153
17172
  readonly Email: "EMAIL";
17154
- readonly Sms: "SMS";
17155
- readonly Phone: "PHONE";
17156
17173
  readonly Slack: "SLACK";
17157
17174
  readonly Teams: "TEAMS";
17158
17175
  };
@@ -26651,12 +26668,36 @@ export interface SendTestNotificationRequestDtoBeta {
26651
26668
  * @memberof SendTestNotificationRequestDtoBeta
26652
26669
  */
26653
26670
  'medium'?: SendTestNotificationRequestDtoBetaMediumBeta;
26671
+ /**
26672
+ * The locale for the message text.
26673
+ * @type {string}
26674
+ * @memberof SendTestNotificationRequestDtoBeta
26675
+ */
26676
+ 'locale'?: string;
26654
26677
  /**
26655
26678
  * A Json object that denotes the context specific to the template.
26656
26679
  * @type {object}
26657
26680
  * @memberof SendTestNotificationRequestDtoBeta
26658
26681
  */
26659
26682
  'context'?: object;
26683
+ /**
26684
+ * A list of override recipient email addresses for the test notification.
26685
+ * @type {Array<string>}
26686
+ * @memberof SendTestNotificationRequestDtoBeta
26687
+ */
26688
+ 'recipientEmailList'?: Array<string>;
26689
+ /**
26690
+ * A list of CC email addresses for the test notification.
26691
+ * @type {Array<string>}
26692
+ * @memberof SendTestNotificationRequestDtoBeta
26693
+ */
26694
+ 'carbonCopy'?: Array<string>;
26695
+ /**
26696
+ * A list of BCC email addresses for the test notification.
26697
+ * @type {Array<string>}
26698
+ * @memberof SendTestNotificationRequestDtoBeta
26699
+ */
26700
+ 'blindCarbonCopy'?: Array<string>;
26660
26701
  }
26661
26702
  export declare const SendTestNotificationRequestDtoBetaMediumBeta: {
26662
26703
  readonly Email: "EMAIL";
@@ -30616,13 +30657,13 @@ export interface TaskStatusMessageParametersInnerBeta {
30616
30657
  */
30617
30658
  export interface TemplateBulkDeleteDtoBeta {
30618
30659
  /**
30619
- *
30660
+ * The template key to delete
30620
30661
  * @type {string}
30621
30662
  * @memberof TemplateBulkDeleteDtoBeta
30622
30663
  */
30623
30664
  'key': string;
30624
30665
  /**
30625
- *
30666
+ * The notification medium (EMAIL, SLACK, or TEAMS)
30626
30667
  * @type {string}
30627
30668
  * @memberof TemplateBulkDeleteDtoBeta
30628
30669
  */
@@ -30636,8 +30677,8 @@ export interface TemplateBulkDeleteDtoBeta {
30636
30677
  }
30637
30678
  export declare const TemplateBulkDeleteDtoBetaMediumBeta: {
30638
30679
  readonly Email: "EMAIL";
30639
- readonly Phone: "PHONE";
30640
- readonly Sms: "SMS";
30680
+ readonly Slack: "SLACK";
30681
+ readonly Teams: "TEAMS";
30641
30682
  };
30642
30683
  export type TemplateBulkDeleteDtoBetaMediumBeta = typeof TemplateBulkDeleteDtoBetaMediumBeta[keyof typeof TemplateBulkDeleteDtoBetaMediumBeta];
30643
30684
  /**
@@ -30734,21 +30775,19 @@ export interface TemplateDtoBeta {
30734
30775
  'modified'?: string;
30735
30776
  /**
30736
30777
  *
30737
- * @type {string}
30778
+ * @type {TemplateDtoSlackTemplateBeta}
30738
30779
  * @memberof TemplateDtoBeta
30739
30780
  */
30740
- 'slackTemplate'?: string | null;
30781
+ 'slackTemplate'?: TemplateDtoSlackTemplateBeta;
30741
30782
  /**
30742
30783
  *
30743
- * @type {string}
30784
+ * @type {TemplateDtoTeamsTemplateBeta}
30744
30785
  * @memberof TemplateDtoBeta
30745
30786
  */
30746
- 'teamsTemplate'?: string | null;
30787
+ 'teamsTemplate'?: TemplateDtoTeamsTemplateBeta;
30747
30788
  }
30748
30789
  export declare const TemplateDtoBetaMediumBeta: {
30749
30790
  readonly Email: "EMAIL";
30750
- readonly Phone: "PHONE";
30751
- readonly Sms: "SMS";
30752
30791
  readonly Slack: "SLACK";
30753
30792
  readonly Teams: "TEAMS";
30754
30793
  };
@@ -30842,12 +30881,156 @@ export interface TemplateDtoDefaultBeta {
30842
30881
  }
30843
30882
  export declare const TemplateDtoDefaultBetaMediumBeta: {
30844
30883
  readonly Email: "EMAIL";
30845
- readonly Phone: "PHONE";
30846
- readonly Sms: "SMS";
30847
30884
  readonly Slack: "SLACK";
30848
30885
  readonly Teams: "TEAMS";
30849
30886
  };
30850
30887
  export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMediumBeta[keyof typeof TemplateDtoDefaultBetaMediumBeta];
30888
+ /**
30889
+ *
30890
+ * @export
30891
+ * @interface TemplateDtoSlackTemplateBeta
30892
+ */
30893
+ export interface TemplateDtoSlackTemplateBeta {
30894
+ /**
30895
+ * The template key
30896
+ * @type {string}
30897
+ * @memberof TemplateDtoSlackTemplateBeta
30898
+ */
30899
+ 'key'?: string | null;
30900
+ /**
30901
+ * The main text content of the Slack message
30902
+ * @type {string}
30903
+ * @memberof TemplateDtoSlackTemplateBeta
30904
+ */
30905
+ 'text'?: string;
30906
+ /**
30907
+ * JSON string of Slack Block Kit blocks for rich formatting
30908
+ * @type {string}
30909
+ * @memberof TemplateDtoSlackTemplateBeta
30910
+ */
30911
+ 'blocks'?: string | null;
30912
+ /**
30913
+ * JSON string of Slack attachments
30914
+ * @type {string}
30915
+ * @memberof TemplateDtoSlackTemplateBeta
30916
+ */
30917
+ 'attachments'?: string;
30918
+ /**
30919
+ * The type of notification
30920
+ * @type {string}
30921
+ * @memberof TemplateDtoSlackTemplateBeta
30922
+ */
30923
+ 'notificationType'?: string | null;
30924
+ /**
30925
+ * The approval request ID
30926
+ * @type {string}
30927
+ * @memberof TemplateDtoSlackTemplateBeta
30928
+ */
30929
+ 'approvalId'?: string | null;
30930
+ /**
30931
+ * The request ID
30932
+ * @type {string}
30933
+ * @memberof TemplateDtoSlackTemplateBeta
30934
+ */
30935
+ 'requestId'?: string | null;
30936
+ /**
30937
+ * The ID of the user who made the request
30938
+ * @type {string}
30939
+ * @memberof TemplateDtoSlackTemplateBeta
30940
+ */
30941
+ 'requestedById'?: string | null;
30942
+ /**
30943
+ * Whether this is a subscription notification
30944
+ * @type {boolean}
30945
+ * @memberof TemplateDtoSlackTemplateBeta
30946
+ */
30947
+ 'isSubscription'?: boolean | null;
30948
+ /**
30949
+ *
30950
+ * @type {TemplateSlackAutoApprovalDataBeta}
30951
+ * @memberof TemplateDtoSlackTemplateBeta
30952
+ */
30953
+ 'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
30954
+ /**
30955
+ *
30956
+ * @type {TemplateSlackCustomFieldsBeta}
30957
+ * @memberof TemplateDtoSlackTemplateBeta
30958
+ */
30959
+ 'customFields'?: TemplateSlackCustomFieldsBeta | null;
30960
+ }
30961
+ /**
30962
+ *
30963
+ * @export
30964
+ * @interface TemplateDtoTeamsTemplateBeta
30965
+ */
30966
+ export interface TemplateDtoTeamsTemplateBeta {
30967
+ /**
30968
+ * The template key
30969
+ * @type {string}
30970
+ * @memberof TemplateDtoTeamsTemplateBeta
30971
+ */
30972
+ 'key'?: string | null;
30973
+ /**
30974
+ * The title of the Teams message
30975
+ * @type {string}
30976
+ * @memberof TemplateDtoTeamsTemplateBeta
30977
+ */
30978
+ 'title'?: string | null;
30979
+ /**
30980
+ * The main text content of the Teams message
30981
+ * @type {string}
30982
+ * @memberof TemplateDtoTeamsTemplateBeta
30983
+ */
30984
+ 'text'?: string;
30985
+ /**
30986
+ * JSON string of the Teams adaptive card
30987
+ * @type {string}
30988
+ * @memberof TemplateDtoTeamsTemplateBeta
30989
+ */
30990
+ 'messageJSON'?: string | null;
30991
+ /**
30992
+ * Whether this is a subscription notification
30993
+ * @type {boolean}
30994
+ * @memberof TemplateDtoTeamsTemplateBeta
30995
+ */
30996
+ 'isSubscription'?: boolean | null;
30997
+ /**
30998
+ * The approval request ID
30999
+ * @type {string}
31000
+ * @memberof TemplateDtoTeamsTemplateBeta
31001
+ */
31002
+ 'approvalId'?: string | null;
31003
+ /**
31004
+ * The request ID
31005
+ * @type {string}
31006
+ * @memberof TemplateDtoTeamsTemplateBeta
31007
+ */
31008
+ 'requestId'?: string | null;
31009
+ /**
31010
+ * The ID of the user who made the request
31011
+ * @type {string}
31012
+ * @memberof TemplateDtoTeamsTemplateBeta
31013
+ */
31014
+ 'requestedById'?: string | null;
31015
+ /**
31016
+ * The type of notification
31017
+ * @type {string}
31018
+ * @memberof TemplateDtoTeamsTemplateBeta
31019
+ */
31020
+ 'notificationType'?: string | null;
31021
+ /**
31022
+ *
31023
+ * @type {TemplateSlackAutoApprovalDataBeta}
31024
+ * @memberof TemplateDtoTeamsTemplateBeta
31025
+ */
31026
+ 'autoApprovalData'?: TemplateSlackAutoApprovalDataBeta | null;
31027
+ /**
31028
+ *
31029
+ * @type {TemplateSlackCustomFieldsBeta}
31030
+ * @memberof TemplateDtoTeamsTemplateBeta
31031
+ */
31032
+ 'customFields'?: TemplateSlackCustomFieldsBeta | null;
31033
+ }
30851
31034
  /**
30852
31035
  *
30853
31036
  * @export
@@ -30855,31 +31038,31 @@ export type TemplateDtoDefaultBetaMediumBeta = typeof TemplateDtoDefaultBetaMedi
30855
31038
  */
30856
31039
  export interface TemplateSlackAutoApprovalDataBeta {
30857
31040
  /**
30858
- *
31041
+ * Whether the request was auto-approved
30859
31042
  * @type {string}
30860
31043
  * @memberof TemplateSlackAutoApprovalDataBeta
30861
31044
  */
30862
31045
  'isAutoApproved'?: string | null;
30863
31046
  /**
30864
- *
31047
+ * The item ID
30865
31048
  * @type {string}
30866
31049
  * @memberof TemplateSlackAutoApprovalDataBeta
30867
31050
  */
30868
31051
  'itemId'?: string | null;
30869
31052
  /**
30870
- *
31053
+ * The item type
30871
31054
  * @type {string}
30872
31055
  * @memberof TemplateSlackAutoApprovalDataBeta
30873
31056
  */
30874
31057
  'itemType'?: string | null;
30875
31058
  /**
30876
- *
31059
+ * JSON message for auto-approval
30877
31060
  * @type {string}
30878
31061
  * @memberof TemplateSlackAutoApprovalDataBeta
30879
31062
  */
30880
31063
  'autoApprovalMessageJSON'?: string | null;
30881
31064
  /**
30882
- *
31065
+ * Title for auto-approval
30883
31066
  * @type {string}
30884
31067
  * @memberof TemplateSlackAutoApprovalDataBeta
30885
31068
  */
@@ -30892,55 +31075,55 @@ export interface TemplateSlackAutoApprovalDataBeta {
30892
31075
  */
30893
31076
  export interface TemplateSlackBeta {
30894
31077
  /**
30895
- *
31078
+ * The template key
30896
31079
  * @type {string}
30897
31080
  * @memberof TemplateSlackBeta
30898
31081
  */
30899
31082
  'key'?: string | null;
30900
31083
  /**
30901
- *
31084
+ * The main text content of the Slack message
30902
31085
  * @type {string}
30903
31086
  * @memberof TemplateSlackBeta
30904
31087
  */
30905
31088
  'text'?: string;
30906
31089
  /**
30907
- *
31090
+ * JSON string of Slack Block Kit blocks for rich formatting
30908
31091
  * @type {string}
30909
31092
  * @memberof TemplateSlackBeta
30910
31093
  */
30911
31094
  'blocks'?: string | null;
30912
31095
  /**
30913
- *
31096
+ * JSON string of Slack attachments
30914
31097
  * @type {string}
30915
31098
  * @memberof TemplateSlackBeta
30916
31099
  */
30917
31100
  'attachments'?: string;
30918
31101
  /**
30919
- *
31102
+ * The type of notification
30920
31103
  * @type {string}
30921
31104
  * @memberof TemplateSlackBeta
30922
31105
  */
30923
31106
  'notificationType'?: string | null;
30924
31107
  /**
30925
- *
31108
+ * The approval request ID
30926
31109
  * @type {string}
30927
31110
  * @memberof TemplateSlackBeta
30928
31111
  */
30929
31112
  'approvalId'?: string | null;
30930
31113
  /**
30931
- *
31114
+ * The request ID
30932
31115
  * @type {string}
30933
31116
  * @memberof TemplateSlackBeta
30934
31117
  */
30935
31118
  'requestId'?: string | null;
30936
31119
  /**
30937
- *
31120
+ * The ID of the user who made the request
30938
31121
  * @type {string}
30939
31122
  * @memberof TemplateSlackBeta
30940
31123
  */
30941
31124
  'requestedById'?: string | null;
30942
31125
  /**
30943
- *
31126
+ * Whether this is a subscription notification
30944
31127
  * @type {boolean}
30945
31128
  * @memberof TemplateSlackBeta
30946
31129
  */
@@ -30965,25 +31148,25 @@ export interface TemplateSlackBeta {
30965
31148
  */
30966
31149
  export interface TemplateSlackCustomFieldsBeta {
30967
31150
  /**
30968
- *
31151
+ * The type of request
30969
31152
  * @type {string}
30970
31153
  * @memberof TemplateSlackCustomFieldsBeta
30971
31154
  */
30972
31155
  'requestType'?: string | null;
30973
31156
  /**
30974
- *
31157
+ * Whether the request contains a deny action
30975
31158
  * @type {string}
30976
31159
  * @memberof TemplateSlackCustomFieldsBeta
30977
31160
  */
30978
31161
  'containsDeny'?: string | null;
30979
31162
  /**
30980
- *
31163
+ * The campaign ID
30981
31164
  * @type {string}
30982
31165
  * @memberof TemplateSlackCustomFieldsBeta
30983
31166
  */
30984
31167
  'campaignId'?: string | null;
30985
31168
  /**
30986
- *
31169
+ * The campaign status
30987
31170
  * @type {string}
30988
31171
  * @memberof TemplateSlackCustomFieldsBeta
30989
31172
  */
@@ -30996,55 +31179,55 @@ export interface TemplateSlackCustomFieldsBeta {
30996
31179
  */
30997
31180
  export interface TemplateTeamsBeta {
30998
31181
  /**
30999
- *
31182
+ * The template key
31000
31183
  * @type {string}
31001
31184
  * @memberof TemplateTeamsBeta
31002
31185
  */
31003
31186
  'key'?: string | null;
31004
31187
  /**
31005
- *
31188
+ * The title of the Teams message
31006
31189
  * @type {string}
31007
31190
  * @memberof TemplateTeamsBeta
31008
31191
  */
31009
31192
  'title'?: string | null;
31010
31193
  /**
31011
- *
31194
+ * The main text content of the Teams message
31012
31195
  * @type {string}
31013
31196
  * @memberof TemplateTeamsBeta
31014
31197
  */
31015
31198
  'text'?: string;
31016
31199
  /**
31017
- *
31200
+ * JSON string of the Teams adaptive card
31018
31201
  * @type {string}
31019
31202
  * @memberof TemplateTeamsBeta
31020
31203
  */
31021
31204
  'messageJSON'?: string | null;
31022
31205
  /**
31023
- *
31206
+ * Whether this is a subscription notification
31024
31207
  * @type {boolean}
31025
31208
  * @memberof TemplateTeamsBeta
31026
31209
  */
31027
31210
  'isSubscription'?: boolean | null;
31028
31211
  /**
31029
- *
31212
+ * The approval request ID
31030
31213
  * @type {string}
31031
31214
  * @memberof TemplateTeamsBeta
31032
31215
  */
31033
31216
  'approvalId'?: string | null;
31034
31217
  /**
31035
- *
31218
+ * The request ID
31036
31219
  * @type {string}
31037
31220
  * @memberof TemplateTeamsBeta
31038
31221
  */
31039
31222
  'requestId'?: string | null;
31040
31223
  /**
31041
- *
31224
+ * The ID of the user who made the request
31042
31225
  * @type {string}
31043
31226
  * @memberof TemplateTeamsBeta
31044
31227
  */
31045
31228
  'requestedById'?: string | null;
31046
31229
  /**
31047
- *
31230
+ * The type of notification
31048
31231
  * @type {string}
31049
31232
  * @memberof TemplateTeamsBeta
31050
31233
  */
@@ -53275,7 +53458,7 @@ export declare const NotificationsBetaApiAxiosParamCreator: (configuration?: Con
53275
53458
  */
53276
53459
  createVerifiedFromAddress: (emailStatusDtoBeta: EmailStatusDtoBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
53277
53460
  /**
53278
- * 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.
53461
+ * This lets you bulk delete templates that you previously created for your site.
53279
53462
  * @summary Bulk delete notification templates
53280
53463
  * @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
53281
53464
  * @param {*} [axiosOptions] Override http request option.
@@ -53408,7 +53591,7 @@ export declare const NotificationsBetaApiFp: (configuration?: Configuration) =>
53408
53591
  */
53409
53592
  createVerifiedFromAddress(emailStatusDtoBeta: EmailStatusDtoBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailStatusDtoBeta>>;
53410
53593
  /**
53411
- * 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.
53594
+ * This lets you bulk delete templates that you previously created for your site.
53412
53595
  * @summary Bulk delete notification templates
53413
53596
  * @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
53414
53597
  * @param {*} [axiosOptions] Override http request option.
@@ -53541,7 +53724,7 @@ export declare const NotificationsBetaApiFactory: (configuration?: Configuration
53541
53724
  */
53542
53725
  createVerifiedFromAddress(requestParameters: NotificationsBetaApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EmailStatusDtoBeta>;
53543
53726
  /**
53544
- * 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.
53727
+ * This lets you bulk delete templates that you previously created for your site.
53545
53728
  * @summary Bulk delete notification templates
53546
53729
  * @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
53547
53730
  * @param {*} [axiosOptions] Override http request option.
@@ -53893,7 +54076,7 @@ export declare class NotificationsBetaApi extends BaseAPI {
53893
54076
  */
53894
54077
  createVerifiedFromAddress(requestParameters: NotificationsBetaApiCreateVerifiedFromAddressRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailStatusDtoBeta, any>>;
53895
54078
  /**
53896
- * 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.
54079
+ * This lets you bulk delete templates that you previously created for your site.
53897
54080
  * @summary Bulk delete notification templates
53898
54081
  * @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
53899
54082
  * @param {*} [axiosOptions] Override http request option.
package/dist/beta/api.js CHANGED
@@ -885,7 +885,8 @@ exports.DtoTypeBeta = {
885
885
  exports.EmailStatusDtoBetaVerificationStatusBeta = {
886
886
  Pending: 'PENDING',
887
887
  Success: 'SUCCESS',
888
- Failed: 'FAILED'
888
+ Failed: 'FAILED',
889
+ Na: 'NA'
889
890
  };
890
891
  exports.EntitlementApprovalSchemeBetaApproverTypeBeta = {
891
892
  EntitlementOwner: 'ENTITLEMENT_OWNER',
@@ -1497,14 +1498,12 @@ exports.ManualWorkItemStateBeta = {
1497
1498
  Archived: 'ARCHIVED'
1498
1499
  };
1499
1500
  /**
1500
- *
1501
+ * The notification medium (EMAIL, SLACK, or TEAMS)
1501
1502
  * @export
1502
1503
  * @enum {string}
1503
1504
  */
1504
1505
  exports.MediumBeta = {
1505
1506
  Email: 'EMAIL',
1506
- Sms: 'SMS',
1507
- Phone: 'PHONE',
1508
1507
  Slack: 'SLACK',
1509
1508
  Teams: 'TEAMS'
1510
1509
  };
@@ -2442,20 +2441,16 @@ exports.TaskStatusMessageBetaTypeBeta = {
2442
2441
  };
2443
2442
  exports.TemplateBulkDeleteDtoBetaMediumBeta = {
2444
2443
  Email: 'EMAIL',
2445
- Phone: 'PHONE',
2446
- Sms: 'SMS'
2444
+ Slack: 'SLACK',
2445
+ Teams: 'TEAMS'
2447
2446
  };
2448
2447
  exports.TemplateDtoBetaMediumBeta = {
2449
2448
  Email: 'EMAIL',
2450
- Phone: 'PHONE',
2451
- Sms: 'SMS',
2452
2449
  Slack: 'SLACK',
2453
2450
  Teams: 'TEAMS'
2454
2451
  };
2455
2452
  exports.TemplateDtoDefaultBetaMediumBeta = {
2456
2453
  Email: 'EMAIL',
2457
- Phone: 'PHONE',
2458
- Sms: 'SMS',
2459
2454
  Slack: 'SLACK',
2460
2455
  Teams: 'TEAMS'
2461
2456
  };
@@ -40043,7 +40038,7 @@ var NotificationsBetaApiAxiosParamCreator = function (configuration) {
40043
40038
  });
40044
40039
  },
40045
40040
  /**
40046
- * 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.
40041
+ * This lets you bulk delete templates that you previously created for your site.
40047
40042
  * @summary Bulk delete notification templates
40048
40043
  * @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
40049
40044
  * @param {*} [axiosOptions] Override http request option.
@@ -40789,7 +40784,7 @@ var NotificationsBetaApiFp = function (configuration) {
40789
40784
  });
40790
40785
  },
40791
40786
  /**
40792
- * 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.
40787
+ * This lets you bulk delete templates that you previously created for your site.
40793
40788
  * @summary Bulk delete notification templates
40794
40789
  * @param {Array<TemplateBulkDeleteDtoBeta>} templateBulkDeleteDtoBeta
40795
40790
  * @param {*} [axiosOptions] Override http request option.
@@ -41112,7 +41107,7 @@ var NotificationsBetaApiFactory = function (configuration, basePath, axios) {
41112
41107
  return localVarFp.createVerifiedFromAddress(requestParameters.emailStatusDtoBeta, axiosOptions).then(function (request) { return request(axios, basePath); });
41113
41108
  },
41114
41109
  /**
41115
- * 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.
41110
+ * This lets you bulk delete templates that you previously created for your site.
41116
41111
  * @summary Bulk delete notification templates
41117
41112
  * @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
41118
41113
  * @param {*} [axiosOptions] Override http request option.
@@ -41283,7 +41278,7 @@ var NotificationsBetaApi = /** @class */ (function (_super) {
41283
41278
  return (0, exports.NotificationsBetaApiFp)(this.configuration).createVerifiedFromAddress(requestParameters.emailStatusDtoBeta, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
41284
41279
  };
41285
41280
  /**
41286
- * 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.
41281
+ * This lets you bulk delete templates that you previously created for your site.
41287
41282
  * @summary Bulk delete notification templates
41288
41283
  * @param {NotificationsBetaApiDeleteNotificationTemplatesInBulkRequest} requestParameters Request parameters.
41289
41284
  * @param {*} [axiosOptions] Override http request option.