@revxui/api-clients-ts 1.1.502 → 1.1.504
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/README.md +2 -2
- package/api/notificationsController.service.d.ts +14 -0
- package/esm2020/api/notificationsController.service.mjs +32 -1
- package/esm2020/model/apiResponseObjectListSafeguardAlertDTO.mjs +2 -0
- package/esm2020/model/creativePerformanceList.mjs +1 -1
- package/esm2020/model/creativeSetDashboardMetric.mjs +1 -1
- package/esm2020/model/creativeSetDetails.mjs +1 -1
- package/esm2020/model/creativeSetPerformanceList.mjs +1 -1
- package/esm2020/model/creativeSetRequest.mjs +1 -1
- package/esm2020/model/dashboardData.mjs +1 -1
- package/esm2020/model/dashboardMetrics.mjs +1 -1
- package/esm2020/model/models.mjs +3 -1
- package/esm2020/model/safeguardAlertDTO.mjs +13 -0
- package/esm2020/model/safeguardDetail.mjs +3 -2
- package/esm2020/model/safeguardExclusionDTO.mjs +3 -2
- package/esm2020/model/safeguardRequestDTO.mjs +3 -2
- package/esm2020/model/safeguardResponseDTO.mjs +3 -2
- package/esm2020/model/slicexData.mjs +1 -1
- package/esm2020/model/slicexGridData.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +39 -4
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +51 -4
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectListSafeguardAlertDTO.d.ts +17 -0
- package/model/creativePerformanceList.d.ts +1 -0
- package/model/creativeSetDashboardMetric.d.ts +1 -0
- package/model/creativeSetDetails.d.ts +1 -0
- package/model/creativeSetPerformanceList.d.ts +1 -0
- package/model/creativeSetRequest.d.ts +1 -0
- package/model/dashboardData.d.ts +1 -0
- package/model/dashboardMetrics.d.ts +1 -0
- package/model/models.d.ts +2 -0
- package/model/safeguardAlertDTO.d.ts +19 -0
- package/model/safeguardDetail.d.ts +3 -1
- package/model/safeguardExclusionDTO.d.ts +2 -1
- package/model/safeguardRequestDTO.d.ts +3 -1
- package/model/safeguardResponseDTO.d.ts +3 -1
- package/model/slicexData.d.ts +2 -0
- package/model/slicexGridData.d.ts +2 -0
- package/package.json +1 -1
|
@@ -7751,6 +7751,37 @@ class NotificationsControllerService {
|
|
|
7751
7751
|
reportProgress: reportProgress
|
|
7752
7752
|
});
|
|
7753
7753
|
}
|
|
7754
|
+
getSafeguardAlertsByEntityUsingGET(entityId, entityType, reqId, token, observe = 'body', reportProgress = false) {
|
|
7755
|
+
if (entityId === null || entityId === undefined) {
|
|
7756
|
+
throw new Error('Required parameter entityId was null or undefined when calling getSafeguardAlertsByEntityUsingGET.');
|
|
7757
|
+
}
|
|
7758
|
+
if (entityType === null || entityType === undefined) {
|
|
7759
|
+
throw new Error('Required parameter entityType was null or undefined when calling getSafeguardAlertsByEntityUsingGET.');
|
|
7760
|
+
}
|
|
7761
|
+
let headers = this.defaultHeaders;
|
|
7762
|
+
if (reqId !== undefined && reqId !== null) {
|
|
7763
|
+
headers = headers.set('reqId', String(reqId));
|
|
7764
|
+
}
|
|
7765
|
+
if (token !== undefined && token !== null) {
|
|
7766
|
+
headers = headers.set('token', String(token));
|
|
7767
|
+
}
|
|
7768
|
+
// to determine the Accept header
|
|
7769
|
+
let httpHeaderAccepts = [
|
|
7770
|
+
'application/json'
|
|
7771
|
+
];
|
|
7772
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
7773
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
7774
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
7775
|
+
}
|
|
7776
|
+
// to determine the Content-Type header
|
|
7777
|
+
const consumes = [];
|
|
7778
|
+
return this.httpClient.get(`${this.basePath}/v2/api/notifications/getBannerNotifications/${encodeURIComponent(String(entityType))}/${encodeURIComponent(String(entityId))}`, {
|
|
7779
|
+
withCredentials: this.configuration.withCredentials,
|
|
7780
|
+
headers: headers,
|
|
7781
|
+
observe: observe,
|
|
7782
|
+
reportProgress: reportProgress
|
|
7783
|
+
});
|
|
7784
|
+
}
|
|
7754
7785
|
markAllSeenUsingPOST(reqId, token, observe = 'body', reportProgress = false) {
|
|
7755
7786
|
let headers = this.defaultHeaders;
|
|
7756
7787
|
if (reqId !== undefined && reqId !== null) {
|
|
@@ -13946,6 +13977,18 @@ var RuleDTO;
|
|
|
13946
13977
|
* Do not edit the class manually.
|
|
13947
13978
|
*/
|
|
13948
13979
|
|
|
13980
|
+
/**
|
|
13981
|
+
* Api Documentation
|
|
13982
|
+
* Api Documentation
|
|
13983
|
+
*
|
|
13984
|
+
* OpenAPI spec version: 1.0
|
|
13985
|
+
*
|
|
13986
|
+
*
|
|
13987
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
13988
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
13989
|
+
* Do not edit the class manually.
|
|
13990
|
+
*/
|
|
13991
|
+
|
|
13949
13992
|
/**
|
|
13950
13993
|
* Api Documentation
|
|
13951
13994
|
* Api Documentation
|
|
@@ -13970,7 +14013,8 @@ var SafeguardDetail;
|
|
|
13970
14013
|
SafeguardDetail.TargetingScopeEnum = {
|
|
13971
14014
|
APP: 'APP',
|
|
13972
14015
|
INVENTORY: 'INVENTORY',
|
|
13973
|
-
CREATIVE: 'CREATIVE'
|
|
14016
|
+
CREATIVE: 'CREATIVE',
|
|
14017
|
+
STRATEGY: 'STRATEGY'
|
|
13974
14018
|
};
|
|
13975
14019
|
})(SafeguardDetail || (SafeguardDetail = {}));
|
|
13976
14020
|
|
|
@@ -13979,7 +14023,8 @@ var SafeguardExclusionDTO;
|
|
|
13979
14023
|
SafeguardExclusionDTO.ScopeEnum = {
|
|
13980
14024
|
APP: 'APP',
|
|
13981
14025
|
INVENTORY: 'INVENTORY',
|
|
13982
|
-
CREATIVE: 'CREATIVE'
|
|
14026
|
+
CREATIVE: 'CREATIVE',
|
|
14027
|
+
STRATEGY: 'STRATEGY'
|
|
13983
14028
|
};
|
|
13984
14029
|
})(SafeguardExclusionDTO || (SafeguardExclusionDTO = {}));
|
|
13985
14030
|
|
|
@@ -13988,7 +14033,8 @@ var SafeguardRequestDTO;
|
|
|
13988
14033
|
SafeguardRequestDTO.TargetingScopeEnum = {
|
|
13989
14034
|
APP: 'APP',
|
|
13990
14035
|
INVENTORY: 'INVENTORY',
|
|
13991
|
-
CREATIVE: 'CREATIVE'
|
|
14036
|
+
CREATIVE: 'CREATIVE',
|
|
14037
|
+
STRATEGY: 'STRATEGY'
|
|
13992
14038
|
};
|
|
13993
14039
|
})(SafeguardRequestDTO || (SafeguardRequestDTO = {}));
|
|
13994
14040
|
|
|
@@ -13997,7 +14043,8 @@ var SafeguardResponseDTO;
|
|
|
13997
14043
|
SafeguardResponseDTO.TargetingScopeEnum = {
|
|
13998
14044
|
APP: 'APP',
|
|
13999
14045
|
INVENTORY: 'INVENTORY',
|
|
14000
|
-
CREATIVE: 'CREATIVE'
|
|
14046
|
+
CREATIVE: 'CREATIVE',
|
|
14047
|
+
STRATEGY: 'STRATEGY'
|
|
14001
14048
|
};
|
|
14002
14049
|
})(SafeguardResponseDTO || (SafeguardResponseDTO = {}));
|
|
14003
14050
|
|