@maxim_mazurok/gapi.client.merchantapi-datasources_v1beta 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 +3 -9
- 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=datasources_v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260627
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -127,10 +127,7 @@ declare namespace gapi.client {
|
|
|
127
127
|
fetchSettings?: FetchSettings;
|
|
128
128
|
/** Output only. The type of file input. */
|
|
129
129
|
fileInputType?:
|
|
130
|
-
| '
|
|
131
|
-
| 'UPLOAD'
|
|
132
|
-
| 'FETCH'
|
|
133
|
-
| 'GOOGLE_SHEETS';
|
|
130
|
+
'FILE_INPUT_TYPE_UNSPECIFIED' | 'UPLOAD' | 'FETCH' | 'GOOGLE_SHEETS';
|
|
134
131
|
/** Optional. The file name of the data source. Required for `UPLOAD` file input type. */
|
|
135
132
|
fileName?: string;
|
|
136
133
|
}
|
|
@@ -149,10 +146,7 @@ declare namespace gapi.client {
|
|
|
149
146
|
name?: string;
|
|
150
147
|
/** Output only. The processing state of the data source. */
|
|
151
148
|
processingState?:
|
|
152
|
-
| '
|
|
153
|
-
| 'FAILED'
|
|
154
|
-
| 'IN_PROGRESS'
|
|
155
|
-
| 'SUCCEEDED';
|
|
149
|
+
'PROCESSING_STATE_UNSPECIFIED' | 'FAILED' | 'IN_PROGRESS' | 'SUCCEEDED';
|
|
156
150
|
/** Output only. The date at which the file of the data source was uploaded. */
|
|
157
151
|
uploadTime?: string;
|
|
158
152
|
}
|
package/package.json
CHANGED