@maxim_mazurok/gapi.client.merchantapi-issueresolution_v1 0.0.20260624 → 0.1.20260627
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/index.d.ts +4 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://merchantapi.googleapis.com/$discovery/rest?version=issueresolution_v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260627
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -140,10 +140,7 @@ declare namespace gapi.client {
|
|
|
140
140
|
fullMessage?: TextWithTooltip;
|
|
141
141
|
/** Can be used to render messages with different severity in different styles. Snippets off all types contain important information that should be displayed to the business. */
|
|
142
142
|
styleHint?:
|
|
143
|
-
| '
|
|
144
|
-
| 'ERROR'
|
|
145
|
-
| 'WARNING'
|
|
146
|
-
| 'INFO';
|
|
143
|
+
'CALLOUT_STYLE_HINT_UNSPECIFIED' | 'ERROR' | 'WARNING' | 'INFO';
|
|
147
144
|
}
|
|
148
145
|
interface CheckboxInput {}
|
|
149
146
|
interface CheckboxInputValue {
|
|
@@ -225,15 +222,10 @@ declare namespace gapi.client {
|
|
|
225
222
|
productCount?: string;
|
|
226
223
|
/** Whether the issue can be resolved by the merchant. */
|
|
227
224
|
resolution?:
|
|
228
|
-
| '
|
|
229
|
-
| 'MERCHANT_ACTION'
|
|
230
|
-
| 'PENDING_PROCESSING';
|
|
225
|
+
'RESOLUTION_UNSPECIFIED' | 'MERCHANT_ACTION' | 'PENDING_PROCESSING';
|
|
231
226
|
/** How this issue affects serving of the offer. */
|
|
232
227
|
severity?:
|
|
233
|
-
| '
|
|
234
|
-
| 'NOT_IMPACTED'
|
|
235
|
-
| 'DEMOTED'
|
|
236
|
-
| 'DISAPPROVED';
|
|
228
|
+
'SEVERITY_UNSPECIFIED' | 'NOT_IMPACTED' | 'DEMOTED' | 'DISAPPROVED';
|
|
237
229
|
}
|
|
238
230
|
interface ListAggregateProductStatusesResponse {
|
|
239
231
|
/** The `AggregateProductStatuses` resources for the given account. */
|
package/package.json
CHANGED