@rlvt/datasources-openapi-client 0.0.0-68eb2df → 0.0.0-68ee051
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/build/api.d.ts +540 -907
- package/build/api.js +57 -50
- package/build/definitions.d.ts +1783 -1805
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/definitions.d.ts
CHANGED
|
@@ -17,63 +17,63 @@ declare type PropsWithoutWriteonly<T> = {
|
|
|
17
17
|
export declare type WithoutWriteonly<T> = T extends any ? T extends Primitive ? T : T extends Array<infer U> ? WithoutWriteonly<U>[] : {
|
|
18
18
|
[key in keyof Pick<T, PropsWithoutWriteonly<T>>]: Pick<T, PropsWithoutWriteonly<T>>[key] extends any ? WithoutWriteonly<Pick<T, PropsWithoutWriteonly<T>>[key]> : never;
|
|
19
19
|
} : never;
|
|
20
|
-
export declare type
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
};
|
|
20
|
+
export declare type Pick__readonlycompanyId_string_readonlyresourceGroupIds_string_Array_username_string_or_undefined_tokenUrl_string_or_undefined_authorizeUrl_string_or_undefined_password_string_or_undefined_refreshToken_string_or_undefined_accessToken_string_or_undefined___NonFunctionPropertyNames_Pick_OAuthClient_companyId_or_resourceGroupIds_or_username_or_tokenUrl_or_authorizeUrl_or_password_or_refreshToken_or_accessToken_or_getRedirectUri_or_getCallbackUri_or_toJSON_or_getTokensFromCode_or_storeAccessToken___ = {
|
|
21
|
+
readonly companyId: (string) & readonlyP;
|
|
22
|
+
readonly resourceGroupIds: (string[]) & readonlyP;
|
|
23
|
+
username?: string;
|
|
24
|
+
tokenUrl?: string;
|
|
25
|
+
authorizeUrl?: string;
|
|
26
|
+
password?: (string) & writeonlyP;
|
|
27
|
+
refreshToken?: (string) & writeonlyP;
|
|
28
|
+
accessToken?: (string) & writeonlyP;
|
|
29
|
+
};
|
|
30
|
+
export declare type __x_string__string__ = {};
|
|
31
31
|
export declare enum AuthenticationMode {
|
|
32
32
|
PASSWORD = "password",
|
|
33
33
|
CLIENT_CREDENTIALS = "client_credentials",
|
|
34
34
|
REFRESH_TOKEN = "refresh_token",
|
|
35
35
|
ACCESS_TOKEN = "access_token"
|
|
36
36
|
}
|
|
37
|
-
export declare type
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
};
|
|
47
|
-
export declare type OAuthClientConfiguration =
|
|
48
|
-
export declare type OAuthClient =
|
|
49
|
-
readonly
|
|
37
|
+
export declare type Pick__tokenUrl_string_authorizeUrl_string_or_undefined_clientId_string_clientSecret_string_scopes_string_Array_authorizeUrlQueryParams___x_string__string___or_undefined_mode_OAuthClientConfiguration_tokenUrl_or_authorizeUrl_or_toJSON_or_clientId_or_clientSecret_or_scopes_or_authorizeUrlQueryParams_or_mode_or_accessTokenHeader___ = {
|
|
38
|
+
tokenUrl: string;
|
|
39
|
+
authorizeUrl?: string;
|
|
40
|
+
clientId: string;
|
|
41
|
+
clientSecret: (string) & writeonlyP;
|
|
42
|
+
scopes: string[];
|
|
43
|
+
authorizeUrlQueryParams?: __x_string__string__;
|
|
44
|
+
mode?: AuthenticationMode;
|
|
45
|
+
accessTokenHeader?: string;
|
|
46
|
+
};
|
|
47
|
+
export declare type OAuthClientConfiguration = Pick__tokenUrl_string_authorizeUrl_string_or_undefined_clientId_string_clientSecret_string_scopes_string_Array_authorizeUrlQueryParams___x_string__string___or_undefined_mode_OAuthClientConfiguration_tokenUrl_or_authorizeUrl_or_toJSON_or_clientId_or_clientSecret_or_scopes_or_authorizeUrlQueryParams_or_mode_or_accessTokenHeader___;
|
|
48
|
+
export declare type OAuthClient = Pick__readonlycompanyId_string_readonlyresourceGroupIds_string_Array_username_string_or_undefined_tokenUrl_string_or_undefined_authorizeUrl_string_or_undefined_password_string_or_undefined_refreshToken_string_or_undefined_accessToken_string_or_undefined___NonFunctionPropertyNames_Pick_OAuthClient_companyId_or_resourceGroupIds_or_username_or_tokenUrl_or_authorizeUrl_or_password_or_refreshToken_or_accessToken_or_getRedirectUri_or_getCallbackUri_or_toJSON_or_getTokensFromCode_or_storeAccessToken___ & {
|
|
49
|
+
readonly id: (string) & readonlyP;
|
|
50
50
|
} & {
|
|
51
|
-
|
|
51
|
+
configuration: string | OAuthClientConfiguration;
|
|
52
52
|
};
|
|
53
|
-
export declare type
|
|
54
|
-
readonly
|
|
53
|
+
export declare type Pick_OAuthClient_companyId_or_resourceGroupIds_or_username_or_tokenUrl_or_authorizeUrl_or_password_or_refreshToken_or_accessToken_or_getRedirectUri_or_getCallbackUri_or_toJSON_or_getTokensFromCode_or_storeAccessToken_ = Pick__readonlycompanyId_string_readonlyresourceGroupIds_string_Array_username_string_or_undefined_tokenUrl_string_or_undefined_authorizeUrl_string_or_undefined_password_string_or_undefined_refreshToken_string_or_undefined_accessToken_string_or_undefined___NonFunctionPropertyNames_Pick_OAuthClient_companyId_or_resourceGroupIds_or_username_or_tokenUrl_or_authorizeUrl_or_password_or_refreshToken_or_accessToken_or_getRedirectUri_or_getCallbackUri_or_toJSON_or_getTokensFromCode_or_storeAccessToken___ & {
|
|
54
|
+
readonly id: (string) & readonlyP;
|
|
55
55
|
} & {
|
|
56
|
-
|
|
57
|
-
};
|
|
58
|
-
export declare type
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
};
|
|
68
|
-
export declare type
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
56
|
+
configuration: string | OAuthClientConfiguration;
|
|
57
|
+
};
|
|
58
|
+
export declare type Partial_Pick_Pick__tokenUrl_string_authorizeUrl_string_or_undefined_clientId_string_clientSecret_string_scopes_string_Array_authorizeUrlQueryParams___x_string__string___or_undefined_mode_OAuthClientConfiguration_tokenUrl_or_authorizeUrl_or_toJSON_or_clientId_or_clientSecret_or_scopes_or_authorizeUrlQueryParams_or_mode_or_accessTokenHeader____ = {
|
|
59
|
+
tokenUrl?: string;
|
|
60
|
+
authorizeUrl?: string;
|
|
61
|
+
clientId?: string;
|
|
62
|
+
clientSecret?: (string) & writeonlyP;
|
|
63
|
+
scopes?: string[];
|
|
64
|
+
authorizeUrlQueryParams?: __x_string__string__;
|
|
65
|
+
mode?: AuthenticationMode;
|
|
66
|
+
accessTokenHeader?: string;
|
|
67
|
+
};
|
|
68
|
+
export declare type Partial_Pick__tokenUrl_string_authorizeUrl_string_or_undefined_clientId_string_clientSecret_string_scopes_string_Array_authorizeUrlQueryParams___x_string__string___or_undefined_mode_OAuthClientConfiguration_tokenUrl_or_authorizeUrl_or_toJSON_or_clientId_or_clientSecret_or_scopes_or_authorizeUrlQueryParams_or_mode_or_accessTokenHeader____ = {
|
|
69
|
+
tokenUrl?: string;
|
|
70
|
+
authorizeUrl?: string;
|
|
71
|
+
clientId?: string;
|
|
72
|
+
clientSecret?: (string) & writeonlyP;
|
|
73
|
+
scopes?: string[];
|
|
74
|
+
authorizeUrlQueryParams?: __x_string__string__;
|
|
75
|
+
mode?: AuthenticationMode;
|
|
76
|
+
accessTokenHeader?: string;
|
|
77
77
|
};
|
|
78
78
|
export declare enum DatasourceMode {
|
|
79
79
|
INGESTER = "ingester",
|
|
@@ -87,46 +87,46 @@ export declare enum DatasourceFetcherName {
|
|
|
87
87
|
TRACKING = "tracking"
|
|
88
88
|
}
|
|
89
89
|
export declare type __ = {};
|
|
90
|
-
export declare type
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
export declare type _name_DatasourceFetcherName_params_____ = {
|
|
91
|
+
name: DatasourceFetcherName;
|
|
92
|
+
params: __;
|
|
93
93
|
};
|
|
94
|
-
export declare type
|
|
95
|
-
|
|
96
|
-
|
|
94
|
+
export declare type _datasourceIdStores_string_datasourceIdStock_string__ = {
|
|
95
|
+
datasourceIdStores: string;
|
|
96
|
+
datasourceIdStock: string;
|
|
97
97
|
};
|
|
98
|
-
export declare type
|
|
99
|
-
|
|
100
|
-
|
|
98
|
+
export declare type _name_DatasourceCustomFetcherName_CARREFOUR_STORES_RETAILS_params__datasourceIdStores_string_datasourceIdStock_string____ = {
|
|
99
|
+
name: "carrefour-stores-retails";
|
|
100
|
+
params: _datasourceIdStores_string_datasourceIdStock_string__;
|
|
101
101
|
};
|
|
102
|
-
export declare type
|
|
103
|
-
|
|
102
|
+
export declare type _datasourceIdStores_string__ = {
|
|
103
|
+
datasourceIdStores: string;
|
|
104
104
|
};
|
|
105
|
-
export declare type
|
|
106
|
-
|
|
107
|
-
|
|
105
|
+
export declare type _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_FUEL_params__datasourceIdStores_string____ = {
|
|
106
|
+
name: "carrefour-stores-with-fuel";
|
|
107
|
+
params: _datasourceIdStores_string__;
|
|
108
108
|
};
|
|
109
|
-
export declare type
|
|
110
|
-
|
|
111
|
-
|
|
109
|
+
export declare type _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_DRIVE_SLOTS_params__datasourceIdStores_string____ = {
|
|
110
|
+
name: "carrefour-stores-with-drive-slots";
|
|
111
|
+
params: _datasourceIdStores_string__;
|
|
112
112
|
};
|
|
113
|
-
export declare type
|
|
114
|
-
|
|
113
|
+
export declare type _datasourceIdAvailablity_string__ = {
|
|
114
|
+
datasourceIdAvailablity: string;
|
|
115
115
|
};
|
|
116
|
-
export declare type
|
|
117
|
-
|
|
118
|
-
|
|
116
|
+
export declare type _name_DatasourceCustomFetcherName_BEST_WESTERN_HOTELS_params__datasourceIdAvailablity_string____ = {
|
|
117
|
+
name: "best-western-hotels";
|
|
118
|
+
params: _datasourceIdAvailablity_string__;
|
|
119
119
|
};
|
|
120
|
-
export declare type
|
|
121
|
-
|
|
122
|
-
|
|
120
|
+
export declare type _name_DatasourceCustomFetcherName_FDJ_BETS_params_____ = {
|
|
121
|
+
name: "fdj-bets";
|
|
122
|
+
params: __;
|
|
123
123
|
};
|
|
124
|
-
export declare type
|
|
125
|
-
|
|
124
|
+
export declare type _datasourceIdSizes_string__ = {
|
|
125
|
+
datasourceIdSizes: string;
|
|
126
126
|
};
|
|
127
|
-
export declare type
|
|
128
|
-
|
|
129
|
-
|
|
127
|
+
export declare type _name_DatasourceCustomFetcherName_SARENZA_SIZES_params__datasourceIdSizes_string____ = {
|
|
128
|
+
name: "sarenza-sizes";
|
|
129
|
+
params: _datasourceIdSizes_string__;
|
|
130
130
|
};
|
|
131
131
|
export declare enum FieldMapType {
|
|
132
132
|
STRING = "string",
|
|
@@ -160,66 +160,70 @@ export declare enum FieldMapType {
|
|
|
160
160
|
WORKFLOW_VERSION_ID = "workflow_version_id",
|
|
161
161
|
WORKFLOW_USER = "workflow_user"
|
|
162
162
|
}
|
|
163
|
-
export declare type
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
};
|
|
171
|
-
export declare type
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
};
|
|
175
|
-
export declare type
|
|
176
|
-
|
|
177
|
-
|
|
163
|
+
export declare type _trackingDatasourceId_string_productDatasourceId_string_productDatasourceIdFieldType_FieldMapType_excludedEventName_string_fallbackEventName_string_fallbackEventDuration_number__ = {
|
|
164
|
+
trackingDatasourceId: string;
|
|
165
|
+
productDatasourceId: string;
|
|
166
|
+
productDatasourceIdFieldType: FieldMapType;
|
|
167
|
+
excludedEventName: string;
|
|
168
|
+
fallbackEventName: string;
|
|
169
|
+
fallbackEventDuration: number;
|
|
170
|
+
};
|
|
171
|
+
export declare type _name_FieldMapType_excludedEventName_string_fallbackEventName_string_fallbackEventDuration_number____ = {
|
|
172
|
+
name: "recommender";
|
|
173
|
+
params: _trackingDatasourceId_string_productDatasourceId_string_productDatasourceIdFieldType_FieldMapType_excludedEventName_string_fallbackEventName_string_fallbackEventDuration_number__;
|
|
174
|
+
};
|
|
175
|
+
export declare type _name_DatasourceCustomFetcherName_RENAULT_PRICES_params_____ = {
|
|
176
|
+
name: "renault-prices";
|
|
177
|
+
params: __;
|
|
178
|
+
};
|
|
179
|
+
export declare type _mode_DatasourceCustomFetcherName_RENAULT_PRICES_params______or_undefined__ = {
|
|
180
|
+
mode: DatasourceMode;
|
|
181
|
+
readonly fetcher?: (_name_DatasourceFetcherName_params_____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_RETAILS_params__datasourceIdStores_string_datasourceIdStock_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_FUEL_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_DRIVE_SLOTS_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_BEST_WESTERN_HOTELS_params__datasourceIdAvailablity_string____ | _name_DatasourceCustomFetcherName_FDJ_BETS_params_____ | _name_DatasourceCustomFetcherName_SARENZA_SIZES_params__datasourceIdSizes_string____ | _name_FieldMapType_excludedEventName_string_fallbackEventName_string_fallbackEventDuration_number____ | _name_DatasourceCustomFetcherName_RENAULT_PRICES_params_____) & readonlyP;
|
|
178
182
|
};
|
|
179
183
|
export declare enum DatasourceGenericSubType {
|
|
180
184
|
USER = "user",
|
|
181
185
|
RECOMMENDER = "recommender"
|
|
182
186
|
}
|
|
183
|
-
export declare type
|
|
184
|
-
|
|
185
|
-
|
|
187
|
+
export declare type _name_DatasourceGenericSubType__ = {
|
|
188
|
+
name: "generic";
|
|
189
|
+
subtype: DatasourceGenericSubType;
|
|
186
190
|
};
|
|
187
191
|
export declare enum DatasourceProductSubType {
|
|
188
192
|
USER = "user",
|
|
189
193
|
SHOPIFY = "shopify",
|
|
190
194
|
BEST_PRODUCT = "best_product"
|
|
191
195
|
}
|
|
192
|
-
export declare type
|
|
193
|
-
|
|
194
|
-
|
|
196
|
+
export declare type _name_DatasourceProductSubType__ = {
|
|
197
|
+
name: "product";
|
|
198
|
+
subtype: DatasourceProductSubType;
|
|
195
199
|
};
|
|
196
200
|
export declare enum DatasourceLocationSubType {
|
|
197
201
|
USER = "user",
|
|
198
202
|
GOOGLE_MY_BUSINESS = "google_my_business",
|
|
199
203
|
PARTOO = "partoo"
|
|
200
204
|
}
|
|
201
|
-
export declare type
|
|
202
|
-
|
|
203
|
-
|
|
205
|
+
export declare type _name_DatasourceLocationSubType__ = {
|
|
206
|
+
name: "location";
|
|
207
|
+
subtype: DatasourceLocationSubType;
|
|
204
208
|
};
|
|
205
209
|
export declare type Pick_Condition_path_or_operator_ = {
|
|
206
|
-
|
|
207
|
-
|
|
210
|
+
path: string;
|
|
211
|
+
operator: "=" | ">=" | "<=" | "!=";
|
|
208
212
|
};
|
|
209
213
|
export declare type FieldMapFallbackRulePayload = {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
+
fromFormatted?: true;
|
|
215
|
+
valuePath?: string;
|
|
216
|
+
exit?: true;
|
|
217
|
+
path: string;
|
|
214
218
|
};
|
|
215
219
|
export declare type Pick_FieldMapFallbackRulePayload_valuePath_or_exit_ = {
|
|
216
|
-
|
|
217
|
-
|
|
220
|
+
valuePath?: string;
|
|
221
|
+
exit?: true;
|
|
218
222
|
};
|
|
219
223
|
export declare type Condition = {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
224
|
+
path: string;
|
|
225
|
+
operator: "=" | ">=" | "<=" | "!=";
|
|
226
|
+
value: string | number | (false) | (true);
|
|
223
227
|
};
|
|
224
228
|
export declare enum FieldSource {
|
|
225
229
|
USER = "user",
|
|
@@ -227,119 +231,113 @@ export declare enum FieldSource {
|
|
|
227
231
|
AGGREGATION = "aggregation"
|
|
228
232
|
}
|
|
229
233
|
export declare type FieldMap = {
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
234
|
+
name: string;
|
|
235
|
+
type: FieldMapType;
|
|
236
|
+
selected: boolean;
|
|
237
|
+
rules: (({
|
|
238
|
+
name: "static" | "path";
|
|
239
|
+
params: {
|
|
240
|
+
value: string;
|
|
237
241
|
};
|
|
238
242
|
} | {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
+
name: "path";
|
|
244
|
+
params: {
|
|
245
|
+
fromRoot: true;
|
|
246
|
+
value: string;
|
|
243
247
|
};
|
|
244
|
-
} | {
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
+
}) | ({
|
|
249
|
+
name: "static" | "path";
|
|
250
|
+
params: {
|
|
251
|
+
value: string;
|
|
248
252
|
};
|
|
249
253
|
} | {
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
+
name: "path";
|
|
255
|
+
params: {
|
|
256
|
+
fromRoot: true;
|
|
257
|
+
value: string;
|
|
254
258
|
};
|
|
255
259
|
} | {
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
260
|
+
name: "array_find";
|
|
261
|
+
params: {
|
|
262
|
+
key: string;
|
|
263
|
+
operator: "=";
|
|
264
|
+
value: string | number;
|
|
261
265
|
};
|
|
262
266
|
} | {
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
267
|
+
name: "array_find";
|
|
268
|
+
params: {
|
|
269
|
+
key: string;
|
|
270
|
+
operator: "=";
|
|
271
|
+
valuePath: string;
|
|
268
272
|
};
|
|
269
273
|
} | {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
+
name: "array_find";
|
|
275
|
+
params: {
|
|
276
|
+
conditions: (Pick_Condition_path_or_operator_ & {
|
|
277
|
+
evaluateValue: string;
|
|
274
278
|
})[];
|
|
275
279
|
};
|
|
276
280
|
} | {
|
|
277
|
-
|
|
278
|
-
|
|
281
|
+
name: "fallback";
|
|
282
|
+
params: FieldMapFallbackRulePayload;
|
|
279
283
|
} | {
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
[key: string]: string;
|
|
284
|
-
} | (number)[] | {
|
|
285
|
-
[key: string]: number;
|
|
286
|
-
};
|
|
284
|
+
name: "fallback";
|
|
285
|
+
params: Pick_FieldMapFallbackRulePayload_valuePath_or_exit_ & {
|
|
286
|
+
staticValue: string | number | string[] | {} | number[] | {};
|
|
287
287
|
};
|
|
288
288
|
} | {
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
})[];
|
|
289
|
+
name: "fallback_if";
|
|
290
|
+
params: FieldMapFallbackRulePayload & {
|
|
291
|
+
conditions: (Condition | (Pick_Condition_path_or_operator_ & {
|
|
292
|
+
evaluateValue: string;
|
|
293
|
+
}))[];
|
|
294
294
|
};
|
|
295
295
|
} | {
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
296
|
+
name: "exclude_from_record";
|
|
297
|
+
params: {
|
|
298
|
+
keys: string[];
|
|
299
299
|
};
|
|
300
300
|
} | {
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
301
|
+
name: "decrypt";
|
|
302
|
+
params: {
|
|
303
|
+
passwordPrefixPath?: string;
|
|
304
304
|
};
|
|
305
305
|
} | {
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
306
|
+
name: "interpolate";
|
|
307
|
+
params: {
|
|
308
|
+
value: string;
|
|
309
309
|
};
|
|
310
|
-
})[];
|
|
311
|
-
|
|
312
|
-
readonly
|
|
310
|
+
}))[];
|
|
311
|
+
source?: FieldSource;
|
|
312
|
+
readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
|
|
313
313
|
};
|
|
314
314
|
export declare type DatasourceHealth = 0 | 1 | 2;
|
|
315
|
-
export declare type
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
};
|
|
319
|
-
export declare type
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
};
|
|
323
|
-
export declare type
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
};
|
|
328
|
-
export declare type
|
|
329
|
-
|
|
330
|
-
};
|
|
331
|
-
export declare type
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
315
|
+
export declare type _type_query_value_string__ = {
|
|
316
|
+
type: "query";
|
|
317
|
+
value: string;
|
|
318
|
+
};
|
|
319
|
+
export declare type _type_hypermediaAttribute_value_string__ = {
|
|
320
|
+
type: "hypermediaAttribute";
|
|
321
|
+
value: string;
|
|
322
|
+
};
|
|
323
|
+
export declare type _type_pageToken_value_string_param_string__ = {
|
|
324
|
+
type: "pageToken";
|
|
325
|
+
value: string;
|
|
326
|
+
param: string;
|
|
327
|
+
};
|
|
328
|
+
export declare type _type_linkHeader__ = {
|
|
329
|
+
type: "linkHeader";
|
|
330
|
+
};
|
|
331
|
+
export declare type Pick__oauth_string_or_undefined_pagination__type_query_value_string___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined___NonFunctionPropertyNames_WorkerApiOptions__ = {
|
|
332
|
+
oauth?: string;
|
|
333
|
+
pagination?: _type_query_value_string__ | _type_hypermediaAttribute_value_string__ | _type_pageToken_value_string_param_string__ | _type_linkHeader__;
|
|
334
|
+
method?: "GET" | "PATCH" | "POST" | "PUT";
|
|
335
|
+
body?: string;
|
|
336
|
+
headers?: __x_string__string__;
|
|
337
|
+
query?: __x_string__string__;
|
|
338
338
|
};
|
|
339
339
|
export declare type AnyValue = any | null;
|
|
340
|
-
export declare type
|
|
341
|
-
[key: string]: AnyValue;
|
|
342
|
-
};
|
|
340
|
+
export declare type __x_string__unknown__ = {};
|
|
343
341
|
export declare enum DatasourceFormat {
|
|
344
342
|
CSV = "csv",
|
|
345
343
|
NDJSON = "ndjson",
|
|
@@ -347,118 +345,118 @@ export declare enum DatasourceFormat {
|
|
|
347
345
|
XML = "xml",
|
|
348
346
|
XLSX = "xlsx"
|
|
349
347
|
}
|
|
350
|
-
export declare type
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
};
|
|
355
|
-
export declare type
|
|
356
|
-
|
|
357
|
-
};
|
|
358
|
-
export declare type
|
|
359
|
-
|
|
360
|
-
};
|
|
361
|
-
export declare type
|
|
362
|
-
|
|
363
|
-
};
|
|
364
|
-
export declare type
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
readonly
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
};
|
|
380
|
-
} | {
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
};
|
|
385
|
-
} | {
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
};
|
|
392
|
-
} | {
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
348
|
+
export declare type _type_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined__ = {
|
|
349
|
+
type: DatasourceFormat;
|
|
350
|
+
options: __x_string__string__;
|
|
351
|
+
overrided?: boolean;
|
|
352
|
+
};
|
|
353
|
+
export declare type _freq_number__ = {
|
|
354
|
+
freq: number;
|
|
355
|
+
};
|
|
356
|
+
export declare type _cron_string__ = {
|
|
357
|
+
cron: string;
|
|
358
|
+
};
|
|
359
|
+
export declare type _datasourceIds_string_Array__ = {
|
|
360
|
+
datasourceIds: string[];
|
|
361
|
+
};
|
|
362
|
+
export declare type _type__name_AggregationStep_Array_or_undefined_refresh__freq_number___or__cron_string___or__datasourceIds_string_Array___or_undefined_detectMissingFields_boolean_or_undefined_maximumEntries_number_or_undefined__ = {
|
|
363
|
+
type?: _name_DatasourceGenericSubType__ | _name_DatasourceProductSubType__ | _name_DatasourceLocationSubType__;
|
|
364
|
+
fieldsMap?: FieldMap[];
|
|
365
|
+
readonly health?: (DatasourceHealth) & readonlyP;
|
|
366
|
+
apiOptions?: Pick__oauth_string_or_undefined_pagination__type_query_value_string___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined___NonFunctionPropertyNames_WorkerApiOptions__;
|
|
367
|
+
sample?: __x_string__unknown__;
|
|
368
|
+
textEncoding?: string;
|
|
369
|
+
urls?: string[];
|
|
370
|
+
format?: _type_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined__;
|
|
371
|
+
aggregationPipeline?: ({
|
|
372
|
+
name: "unwind";
|
|
373
|
+
params: {
|
|
374
|
+
src: string;
|
|
375
|
+
dest: string;
|
|
376
|
+
allowEmpty?: boolean;
|
|
377
|
+
};
|
|
378
|
+
} | {
|
|
379
|
+
name: "extra_data_fields";
|
|
380
|
+
params: {
|
|
381
|
+
fieldNames: string[];
|
|
382
|
+
};
|
|
383
|
+
} | {
|
|
384
|
+
name: "merge";
|
|
385
|
+
params: {
|
|
386
|
+
fieldNames: string[];
|
|
387
|
+
datasourceId: string;
|
|
388
|
+
query: string;
|
|
389
|
+
};
|
|
390
|
+
} | {
|
|
391
|
+
name: "count";
|
|
392
|
+
params: {
|
|
393
|
+
fieldNames: string[];
|
|
394
|
+
datasourceId: string;
|
|
395
|
+
query: string;
|
|
398
396
|
};
|
|
399
397
|
})[];
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
398
|
+
refresh?: _freq_number__ | _cron_string__ | _datasourceIds_string_Array__;
|
|
399
|
+
detectMissingFields?: boolean;
|
|
400
|
+
maximumEntries?: number;
|
|
403
401
|
};
|
|
404
|
-
export declare type
|
|
405
|
-
|
|
406
|
-
|
|
402
|
+
export declare type _datasource__mode_AggregationStep_Array_or_undefined_refresh__freq_number___or__cron_string___or__datasourceIds_string_Array___or_undefined_detectMissingFields_boolean_or_undefined_maximumEntries_number_or_undefined____ = {
|
|
403
|
+
datasource: _mode_DatasourceCustomFetcherName_RENAULT_PRICES_params______or_undefined__;
|
|
404
|
+
version: _type__name_AggregationStep_Array_or_undefined_refresh__freq_number___or__cron_string___or__datasourceIds_string_Array___or_undefined_detectMissingFields_boolean_or_undefined_maximumEntries_number_or_undefined__;
|
|
407
405
|
};
|
|
408
406
|
export declare type Pick_QueriableField_name_or_enum_or_required_or_unique_ = {
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
};
|
|
414
|
-
export declare type
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
})[];
|
|
424
|
-
};
|
|
425
|
-
export declare type _type____name_DatasourceFormat__options___x_string__string_____overrided___boolean_or_undefined____or_undefined__refresh____freq_number____or_undefined___ = {
|
|
426
|
-
'type'?: _name_DatasourceGenericSubType___;
|
|
427
|
-
'fieldsMap'?: (FieldMap)[];
|
|
428
|
-
readonly 'health'?: (DatasourceHealth) & readonlyP;
|
|
429
|
-
'apiOptions'?: Pick__oauth___string_or_undefined__method___GET_or_PATCH_or_POST_or_PUT_or_undefined__body___string_or_undefined__headers_____x_string__string____or_undefined__query_____x_string__string____or_undefined__variables___VariableDefinition_Array_or_undefined____NonFunctionPropertyNames_ProxyApiOptions__;
|
|
430
|
-
'sample'?: __x_string__unknown___;
|
|
431
|
-
'textEncoding'?: string;
|
|
432
|
-
'urls'?: (string)[];
|
|
433
|
-
'format'?: _type_DatasourceFormat__options___x_string__string_____overrided___boolean_or_undefined___;
|
|
434
|
-
'refresh'?: _freq_number___;
|
|
435
|
-
};
|
|
436
|
-
export declare type _datasource__mode_DatasourceFormat__options___x_string__string_____overrided___boolean_or_undefined____or_undefined__refresh____freq_number____or_undefined______ = {
|
|
437
|
-
'datasource': _mode_FieldMapType__excludedEventName_string__fallbackEventName_string__fallbackEventDuration_number_______or_undefined___;
|
|
438
|
-
'version': _type____name_DatasourceFormat__options___x_string__string_____overrided___boolean_or_undefined____or_undefined__refresh____freq_number____or_undefined___;
|
|
439
|
-
};
|
|
440
|
-
export declare type _offlineSize_number__realtimeSize_number___ = {
|
|
441
|
-
'offlineSize': number;
|
|
442
|
-
'realtimeSize': number;
|
|
443
|
-
};
|
|
444
|
-
export declare type _value_number__unit_DAYS___ = {
|
|
445
|
-
'value': number;
|
|
446
|
-
'unit': 'DAYS';
|
|
447
|
-
};
|
|
448
|
-
export declare type _partitionCount_number__segments__offlineSize_number__realtimeSize_number_____retention__value_number__unit_DAYS_____destinations__type_bigquery__dataset_string__tableName_string____Array___ = {
|
|
449
|
-
'partitionCount': number;
|
|
450
|
-
'segments': _offlineSize_number__realtimeSize_number___;
|
|
451
|
-
'retention': _value_number__unit_DAYS___;
|
|
452
|
-
'destinations': ({
|
|
453
|
-
'type': 'bigquery';
|
|
454
|
-
'dataset': string;
|
|
455
|
-
'tableName': string;
|
|
407
|
+
name: string;
|
|
408
|
+
enum?: (string | number)[];
|
|
409
|
+
required: boolean;
|
|
410
|
+
unique: boolean;
|
|
411
|
+
};
|
|
412
|
+
export declare type Pick__oauth_string_or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_variables_VariableDefinition_Array_or_undefined___NonFunctionPropertyNames_ProxyApiOptions__ = {
|
|
413
|
+
oauth?: string;
|
|
414
|
+
method?: "GET" | "PATCH" | "POST" | "PUT";
|
|
415
|
+
body?: string;
|
|
416
|
+
headers?: __x_string__string__;
|
|
417
|
+
query?: __x_string__string__;
|
|
418
|
+
variables?: (Pick_QueriableField_name_or_enum_or_required_or_unique_ & {
|
|
419
|
+
default: string | number | string[] | number[];
|
|
420
|
+
primitive: "string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}";
|
|
456
421
|
})[];
|
|
457
422
|
};
|
|
458
|
-
export declare type
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
423
|
+
export declare type _type__name_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined___or_undefined_refresh__freq_number___or_undefined__ = {
|
|
424
|
+
type?: _name_DatasourceGenericSubType__;
|
|
425
|
+
fieldsMap?: FieldMap[];
|
|
426
|
+
readonly health?: (DatasourceHealth) & readonlyP;
|
|
427
|
+
apiOptions?: Pick__oauth_string_or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_variables_VariableDefinition_Array_or_undefined___NonFunctionPropertyNames_ProxyApiOptions__;
|
|
428
|
+
sample?: __x_string__unknown__;
|
|
429
|
+
textEncoding?: string;
|
|
430
|
+
urls?: string[];
|
|
431
|
+
format?: _type_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined__;
|
|
432
|
+
refresh?: _freq_number__;
|
|
433
|
+
};
|
|
434
|
+
export declare type _datasource__mode_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined___or_undefined_refresh__freq_number___or_undefined____ = {
|
|
435
|
+
datasource: _mode_DatasourceCustomFetcherName_RENAULT_PRICES_params______or_undefined__;
|
|
436
|
+
version: _type__name_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined___or_undefined_refresh__freq_number___or_undefined__;
|
|
437
|
+
};
|
|
438
|
+
export declare type _offlineSize_number_realtimeSize_number__ = {
|
|
439
|
+
offlineSize: number;
|
|
440
|
+
realtimeSize: number;
|
|
441
|
+
};
|
|
442
|
+
export declare type _value_number_unit_DAYS__ = {
|
|
443
|
+
value: number;
|
|
444
|
+
unit: "DAYS";
|
|
445
|
+
};
|
|
446
|
+
export declare type _partitionCount_number_segments__offlineSize_number_realtimeSize_number___retention__value_number_unit_DAYS___destinations__type_bigquery_dataset_string_tableName_string___Array__ = {
|
|
447
|
+
partitionCount: number;
|
|
448
|
+
segments: _offlineSize_number_realtimeSize_number__;
|
|
449
|
+
retention: _value_number_unit_DAYS__;
|
|
450
|
+
destinations: {
|
|
451
|
+
type: "bigquery";
|
|
452
|
+
dataset: string;
|
|
453
|
+
tableName: string;
|
|
454
|
+
}[];
|
|
455
|
+
};
|
|
456
|
+
export declare type _mode_DatasourceCustomFetcherName_RENAULT_PRICES_params______or_undefined_storageOptions__partitionCount_number_segments__offlineSize_number_realtimeSize_number___retention__value_number_unit_DAYS___destinations__type_bigquery_dataset_string_tableName_string___Array___or_undefined__ = {
|
|
457
|
+
mode: DatasourceMode;
|
|
458
|
+
readonly fetcher?: (_name_DatasourceFetcherName_params_____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_RETAILS_params__datasourceIdStores_string_datasourceIdStock_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_FUEL_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_DRIVE_SLOTS_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_BEST_WESTERN_HOTELS_params__datasourceIdAvailablity_string____ | _name_DatasourceCustomFetcherName_FDJ_BETS_params_____ | _name_DatasourceCustomFetcherName_SARENZA_SIZES_params__datasourceIdSizes_string____ | _name_FieldMapType_excludedEventName_string_fallbackEventName_string_fallbackEventDuration_number____ | _name_DatasourceCustomFetcherName_RENAULT_PRICES_params_____) & readonlyP;
|
|
459
|
+
storageOptions?: _partitionCount_number_segments__offlineSize_number_realtimeSize_number___retention__value_number_unit_DAYS___destinations__type_bigquery_dataset_string_tableName_string___Array__;
|
|
462
460
|
};
|
|
463
461
|
export declare enum DatasourceAnalyticsSubType {
|
|
464
462
|
REELEVANT = "reelevant",
|
|
@@ -467,9 +465,9 @@ export declare enum DatasourceAnalyticsSubType {
|
|
|
467
465
|
SCENARIO_EVENTS = "scenario_events",
|
|
468
466
|
WORKFLOW_EVENTS = "workflow_events"
|
|
469
467
|
}
|
|
470
|
-
export declare type
|
|
471
|
-
|
|
472
|
-
|
|
468
|
+
export declare type _name_DatasourceAnalyticsSubType__ = {
|
|
469
|
+
name: "analytics";
|
|
470
|
+
subtype: DatasourceAnalyticsSubType;
|
|
473
471
|
};
|
|
474
472
|
export declare enum IngesterFieldIndex {
|
|
475
473
|
NONE = "none",
|
|
@@ -478,100 +476,96 @@ export declare enum IngesterFieldIndex {
|
|
|
478
476
|
RAW_VALUE_FORWARD = "raw_value_forward"
|
|
479
477
|
}
|
|
480
478
|
export declare type IngesterFieldMap = {
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
479
|
+
index: IngesterFieldIndex;
|
|
480
|
+
sortable: boolean;
|
|
481
|
+
name: string;
|
|
482
|
+
type: FieldMapType;
|
|
483
|
+
selected: boolean;
|
|
484
|
+
rules: (({
|
|
485
|
+
name: "static" | "path";
|
|
486
|
+
params: {
|
|
487
|
+
value: string;
|
|
490
488
|
};
|
|
491
489
|
} | {
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
490
|
+
name: "path";
|
|
491
|
+
params: {
|
|
492
|
+
fromRoot: true;
|
|
493
|
+
value: string;
|
|
496
494
|
};
|
|
497
|
-
} | {
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
495
|
+
}) | ({
|
|
496
|
+
name: "static" | "path";
|
|
497
|
+
params: {
|
|
498
|
+
value: string;
|
|
501
499
|
};
|
|
502
500
|
} | {
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
501
|
+
name: "path";
|
|
502
|
+
params: {
|
|
503
|
+
fromRoot: true;
|
|
504
|
+
value: string;
|
|
507
505
|
};
|
|
508
506
|
} | {
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
507
|
+
name: "array_find";
|
|
508
|
+
params: {
|
|
509
|
+
key: string;
|
|
510
|
+
operator: "=";
|
|
511
|
+
value: string | number;
|
|
514
512
|
};
|
|
515
513
|
} | {
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
514
|
+
name: "array_find";
|
|
515
|
+
params: {
|
|
516
|
+
key: string;
|
|
517
|
+
operator: "=";
|
|
518
|
+
valuePath: string;
|
|
521
519
|
};
|
|
522
520
|
} | {
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
521
|
+
name: "array_find";
|
|
522
|
+
params: {
|
|
523
|
+
conditions: (Pick_Condition_path_or_operator_ & {
|
|
524
|
+
evaluateValue: string;
|
|
527
525
|
})[];
|
|
528
526
|
};
|
|
529
527
|
} | {
|
|
530
|
-
|
|
531
|
-
|
|
528
|
+
name: "fallback";
|
|
529
|
+
params: FieldMapFallbackRulePayload;
|
|
532
530
|
} | {
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
[key: string]: string;
|
|
537
|
-
} | (number)[] | {
|
|
538
|
-
[key: string]: number;
|
|
539
|
-
};
|
|
531
|
+
name: "fallback";
|
|
532
|
+
params: Pick_FieldMapFallbackRulePayload_valuePath_or_exit_ & {
|
|
533
|
+
staticValue: string | number | string[] | {} | number[] | {};
|
|
540
534
|
};
|
|
541
535
|
} | {
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
})[];
|
|
536
|
+
name: "fallback_if";
|
|
537
|
+
params: FieldMapFallbackRulePayload & {
|
|
538
|
+
conditions: (Condition | (Pick_Condition_path_or_operator_ & {
|
|
539
|
+
evaluateValue: string;
|
|
540
|
+
}))[];
|
|
547
541
|
};
|
|
548
542
|
} | {
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
543
|
+
name: "exclude_from_record";
|
|
544
|
+
params: {
|
|
545
|
+
keys: string[];
|
|
552
546
|
};
|
|
553
547
|
} | {
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
548
|
+
name: "decrypt";
|
|
549
|
+
params: {
|
|
550
|
+
passwordPrefixPath?: string;
|
|
557
551
|
};
|
|
558
552
|
} | {
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
553
|
+
name: "interpolate";
|
|
554
|
+
params: {
|
|
555
|
+
value: string;
|
|
562
556
|
};
|
|
563
|
-
})[];
|
|
564
|
-
|
|
565
|
-
readonly
|
|
557
|
+
}))[];
|
|
558
|
+
source?: FieldSource;
|
|
559
|
+
readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
|
|
566
560
|
};
|
|
567
|
-
export declare type
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
readonly
|
|
561
|
+
export declare type _type__name_DatasourceHealth_or_undefined__ = {
|
|
562
|
+
type?: _name_DatasourceAnalyticsSubType__;
|
|
563
|
+
fieldsMap?: IngesterFieldMap[];
|
|
564
|
+
readonly health?: (DatasourceHealth) & readonlyP;
|
|
571
565
|
};
|
|
572
|
-
export declare type
|
|
573
|
-
|
|
574
|
-
|
|
566
|
+
export declare type _datasource__mode_DatasourceHealth_or_undefined____ = {
|
|
567
|
+
datasource: _mode_DatasourceCustomFetcherName_RENAULT_PRICES_params______or_undefined_storageOptions__partitionCount_number_segments__offlineSize_number_realtimeSize_number___retention__value_number_unit_DAYS___destinations__type_bigquery_dataset_string_tableName_string___Array___or_undefined__;
|
|
568
|
+
version: _type__name_DatasourceHealth_or_undefined__;
|
|
575
569
|
};
|
|
576
570
|
export declare enum StepName {
|
|
577
571
|
CONFIGURE_NAME = "configure_name",
|
|
@@ -597,195 +591,195 @@ export declare enum StepName {
|
|
|
597
591
|
CONFIGURE_BEST_PRODUCT_QUERY = "configure_best_product_query",
|
|
598
592
|
CONFIGURE_BEST_PRODUCT_FIELD = "configure_best_product_field"
|
|
599
593
|
}
|
|
600
|
-
export declare type
|
|
601
|
-
|
|
602
|
-
|
|
594
|
+
export declare type _failed_to_pull_StepName__ = {
|
|
595
|
+
failed_to_pull: StepName;
|
|
596
|
+
fatal: StepName;
|
|
603
597
|
};
|
|
604
|
-
export declare type
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
598
|
+
export declare type _configure_name__AutomaticStepName__Array_or_undefined__ = {
|
|
599
|
+
configure_name?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
600
|
+
configure_resource_group_ids?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
601
|
+
configure_source?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
602
|
+
configure_fieldsmap?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
603
|
+
configure_field?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
604
|
+
create_oauth_client?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
605
|
+
authorize_oauth_client?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
606
|
+
configure_thresholds?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
607
|
+
configure_content?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
608
|
+
configure_api_key?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
609
|
+
patch?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
610
|
+
validate?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
611
|
+
configure_shopify_shop_name?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
612
|
+
inject_shopify_analytics_script?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
613
|
+
configure_shopify_analytics_script?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
614
|
+
configure_google_tag_manager?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
615
|
+
configure_reelevant_analytics_script?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
616
|
+
configure_twitter?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
617
|
+
configure_product_datasource_source?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
618
|
+
configure_tracking_datasource_source?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
619
|
+
configure_best_product_query?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
620
|
+
configure_best_product_field?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "google_my_business_set_url" | "setup_instagram")[];
|
|
627
621
|
};
|
|
628
|
-
export declare type
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
622
|
+
export declare type Pick__name_string_icon_string_slug_string_categories_string_Array_feature_string_or_undefined_template__datasource__mode_DatasourceTemplate__ = {
|
|
623
|
+
name: string;
|
|
624
|
+
icon: string;
|
|
625
|
+
slug: string;
|
|
626
|
+
categories: string[];
|
|
627
|
+
feature?: string;
|
|
628
|
+
template: _datasource__mode_AggregationStep_Array_or_undefined_refresh__freq_number___or__cron_string___or__datasourceIds_string_Array___or_undefined_detectMissingFields_boolean_or_undefined_maximumEntries_number_or_undefined____ | _datasource__mode_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined___or_undefined_refresh__freq_number___or_undefined____ | _datasource__mode_DatasourceHealth_or_undefined____;
|
|
629
|
+
steps: ({
|
|
630
|
+
name: "configure_name";
|
|
637
631
|
} | {
|
|
638
|
-
|
|
632
|
+
name: "configure_resource_group_ids";
|
|
639
633
|
} | {
|
|
640
|
-
|
|
641
|
-
|
|
634
|
+
name: "configure_source";
|
|
635
|
+
mode?: "url" | "file";
|
|
642
636
|
} | {
|
|
643
|
-
|
|
637
|
+
name: "configure_fieldsmap";
|
|
644
638
|
} | {
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
639
|
+
name: "configure_field";
|
|
640
|
+
field: {
|
|
641
|
+
name: string;
|
|
642
|
+
type: FieldMapType;
|
|
649
643
|
};
|
|
650
644
|
} | {
|
|
651
|
-
|
|
652
|
-
|
|
645
|
+
name: "create_oauth_client";
|
|
646
|
+
configurationId: string;
|
|
653
647
|
} | {
|
|
654
|
-
|
|
655
|
-
|
|
648
|
+
name: "authorize_oauth_client";
|
|
649
|
+
slug: string;
|
|
656
650
|
} | {
|
|
657
|
-
|
|
651
|
+
name: "configure_thresholds";
|
|
658
652
|
} | {
|
|
659
|
-
|
|
653
|
+
name: "configure_content";
|
|
660
654
|
} | {
|
|
661
|
-
|
|
662
|
-
|
|
655
|
+
name: "configure_api_key";
|
|
656
|
+
slug: "partoo";
|
|
663
657
|
} | {
|
|
664
|
-
|
|
658
|
+
name: "patch";
|
|
665
659
|
} | {
|
|
666
|
-
|
|
660
|
+
name: "validate";
|
|
667
661
|
} | {
|
|
668
|
-
|
|
669
|
-
|
|
662
|
+
name: "configure_shopify_shop_name";
|
|
663
|
+
configurationId: string;
|
|
670
664
|
} | {
|
|
671
|
-
|
|
672
|
-
|
|
665
|
+
name: "inject_shopify_analytics_script";
|
|
666
|
+
configurationId: string;
|
|
673
667
|
} | {
|
|
674
|
-
|
|
668
|
+
name: "configure_shopify_analytics_script";
|
|
675
669
|
} | {
|
|
676
|
-
|
|
670
|
+
name: "configure_google_tag_manager";
|
|
677
671
|
} | {
|
|
678
|
-
|
|
672
|
+
name: "configure_reelevant_analytics_script";
|
|
679
673
|
} | {
|
|
680
|
-
|
|
674
|
+
name: "configure_twitter";
|
|
681
675
|
} | {
|
|
682
|
-
|
|
676
|
+
name: "configure_product_datasource_source";
|
|
683
677
|
} | {
|
|
684
|
-
|
|
678
|
+
name: "configure_tracking_datasource_source";
|
|
685
679
|
} | {
|
|
686
|
-
|
|
680
|
+
name: "configure_best_product_query";
|
|
687
681
|
} | {
|
|
688
|
-
|
|
682
|
+
name: "configure_best_product_field";
|
|
689
683
|
} | {
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
684
|
+
name: "google_my_business_set_url";
|
|
685
|
+
urls: {
|
|
686
|
+
getAccount: string;
|
|
687
|
+
final: string;
|
|
694
688
|
};
|
|
695
689
|
} | {
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
690
|
+
name: "setup_instagram";
|
|
691
|
+
urls: {
|
|
692
|
+
getAccount: string;
|
|
693
|
+
getAccountInfos: string;
|
|
694
|
+
final: string;
|
|
701
695
|
};
|
|
702
696
|
})[];
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
697
|
+
errorsToStep: _failed_to_pull_StepName__;
|
|
698
|
+
stepDependencies: _configure_name__AutomaticStepName__Array_or_undefined__;
|
|
699
|
+
standaloneSteps: StepName[];
|
|
706
700
|
};
|
|
707
|
-
export declare type DatasourceTemplate =
|
|
708
|
-
readonly
|
|
701
|
+
export declare type DatasourceTemplate = Pick__name_string_icon_string_slug_string_categories_string_Array_feature_string_or_undefined_template__datasource__mode_DatasourceTemplate__ & {
|
|
702
|
+
readonly id: (string) & readonlyP;
|
|
709
703
|
} & {
|
|
710
|
-
readonly
|
|
711
|
-
readonly
|
|
704
|
+
readonly createdAt: (Date) & readonlyP;
|
|
705
|
+
readonly updatedAt: (Date) & readonlyP;
|
|
712
706
|
};
|
|
713
707
|
export declare type Pick_Pick__mode_IngesterDatasourceVersion___mode_or_state_or_type_or_fieldsMap_or_pendingSteps_or_availableFieldsTypes_or_requiredFieldsTypes_or_uniqueFieldsTypes_or_undefined_ = {
|
|
714
|
-
|
|
715
|
-
readonly
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
readonly
|
|
719
|
-
|
|
708
|
+
mode: "ingester";
|
|
709
|
+
readonly state: ("LIVE" | "DRAFT") & readonlyP;
|
|
710
|
+
type: _name_DatasourceAnalyticsSubType__;
|
|
711
|
+
fieldsMap: IngesterFieldMap[];
|
|
712
|
+
readonly pendingSteps?: (({
|
|
713
|
+
name: "configure_name";
|
|
720
714
|
} | {
|
|
721
|
-
|
|
715
|
+
name: "configure_resource_group_ids";
|
|
722
716
|
} | {
|
|
723
|
-
|
|
724
|
-
|
|
717
|
+
name: "configure_source";
|
|
718
|
+
mode?: "url" | "file";
|
|
725
719
|
} | {
|
|
726
|
-
|
|
720
|
+
name: "configure_fieldsmap";
|
|
727
721
|
} | {
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
722
|
+
name: "configure_field";
|
|
723
|
+
field: {
|
|
724
|
+
name: string;
|
|
725
|
+
type: FieldMapType;
|
|
732
726
|
};
|
|
733
727
|
} | {
|
|
734
|
-
|
|
735
|
-
|
|
728
|
+
name: "create_oauth_client";
|
|
729
|
+
configurationId: string;
|
|
736
730
|
} | {
|
|
737
|
-
|
|
738
|
-
|
|
731
|
+
name: "authorize_oauth_client";
|
|
732
|
+
slug: string;
|
|
739
733
|
} | {
|
|
740
|
-
|
|
734
|
+
name: "configure_thresholds";
|
|
741
735
|
} | {
|
|
742
|
-
|
|
736
|
+
name: "configure_content";
|
|
743
737
|
} | {
|
|
744
|
-
|
|
745
|
-
|
|
738
|
+
name: "configure_api_key";
|
|
739
|
+
slug: "partoo";
|
|
746
740
|
} | {
|
|
747
|
-
|
|
741
|
+
name: "patch";
|
|
748
742
|
} | {
|
|
749
|
-
|
|
743
|
+
name: "validate";
|
|
750
744
|
} | {
|
|
751
|
-
|
|
752
|
-
|
|
745
|
+
name: "configure_shopify_shop_name";
|
|
746
|
+
configurationId: string;
|
|
753
747
|
} | {
|
|
754
|
-
|
|
755
|
-
|
|
748
|
+
name: "inject_shopify_analytics_script";
|
|
749
|
+
configurationId: string;
|
|
756
750
|
} | {
|
|
757
|
-
|
|
751
|
+
name: "configure_shopify_analytics_script";
|
|
758
752
|
} | {
|
|
759
|
-
|
|
753
|
+
name: "configure_google_tag_manager";
|
|
760
754
|
} | {
|
|
761
|
-
|
|
755
|
+
name: "configure_reelevant_analytics_script";
|
|
762
756
|
} | {
|
|
763
|
-
|
|
757
|
+
name: "configure_twitter";
|
|
764
758
|
} | {
|
|
765
|
-
|
|
759
|
+
name: "configure_product_datasource_source";
|
|
766
760
|
} | {
|
|
767
|
-
|
|
761
|
+
name: "configure_tracking_datasource_source";
|
|
768
762
|
} | {
|
|
769
|
-
|
|
763
|
+
name: "configure_best_product_query";
|
|
770
764
|
} | {
|
|
771
|
-
|
|
765
|
+
name: "configure_best_product_field";
|
|
772
766
|
} | {
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
767
|
+
name: "google_my_business_set_url";
|
|
768
|
+
urls: {
|
|
769
|
+
getAccount: string;
|
|
770
|
+
final: string;
|
|
777
771
|
};
|
|
778
772
|
} | {
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
773
|
+
name: "setup_instagram";
|
|
774
|
+
urls: {
|
|
775
|
+
getAccount: string;
|
|
776
|
+
getAccountInfos: string;
|
|
777
|
+
final: string;
|
|
784
778
|
};
|
|
785
779
|
})[]) & readonlyP;
|
|
786
|
-
readonly
|
|
787
|
-
readonly
|
|
788
|
-
readonly
|
|
780
|
+
readonly availableFieldsTypes: (FieldMapType[]) & readonlyP;
|
|
781
|
+
readonly requiredFieldsTypes: (FieldMapType[][]) & readonlyP;
|
|
782
|
+
readonly uniqueFieldsTypes: (FieldMapType[]) & readonlyP;
|
|
789
783
|
};
|
|
790
784
|
export declare enum DatasourceStatus {
|
|
791
785
|
DRAFT = "draft",
|
|
@@ -795,27 +789,27 @@ export declare enum DatasourceStatus {
|
|
|
795
789
|
PAUSED = "paused",
|
|
796
790
|
ERROR = "error"
|
|
797
791
|
}
|
|
798
|
-
export declare type
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
readonly
|
|
804
|
-
readonly
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
readonly
|
|
792
|
+
export declare type Pick___id_string_companyId_string_resourceGroupIds_string_Array_mode_DatasourceStatus_readonlyhasWarnings_boolean___companyId_or_resourceGroupIds_or_mode_or_name_or_template_or_fetcher_or_storageOptions_or_versions_or_configurationUpdatedAt_or_archivedAt_or_status_or_hasWarnings_or_undefined_ = {
|
|
793
|
+
companyId: string;
|
|
794
|
+
resourceGroupIds: string[];
|
|
795
|
+
mode: "ingester";
|
|
796
|
+
name: string;
|
|
797
|
+
readonly template?: (string) & readonlyP;
|
|
798
|
+
readonly fetcher: (_name_DatasourceFetcherName_params_____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_RETAILS_params__datasourceIdStores_string_datasourceIdStock_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_FUEL_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_DRIVE_SLOTS_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_BEST_WESTERN_HOTELS_params__datasourceIdAvailablity_string____ | _name_DatasourceCustomFetcherName_FDJ_BETS_params_____ | _name_DatasourceCustomFetcherName_SARENZA_SIZES_params__datasourceIdSizes_string____ | _name_FieldMapType_excludedEventName_string_fallbackEventName_string_fallbackEventDuration_number____ | _name_DatasourceCustomFetcherName_RENAULT_PRICES_params_____) & readonlyP;
|
|
799
|
+
storageOptions: _partitionCount_number_segments__offlineSize_number_realtimeSize_number___retention__value_number_unit_DAYS___destinations__type_bigquery_dataset_string_tableName_string___Array__;
|
|
800
|
+
versions: (Pick_Pick__mode_IngesterDatasourceVersion___mode_or_state_or_type_or_fieldsMap_or_pendingSteps_or_availableFieldsTypes_or_requiredFieldsTypes_or_uniqueFieldsTypes_or_undefined_ & {
|
|
801
|
+
readonly health: ("OK" | "WARNING" | "ERROR") & readonlyP;
|
|
808
802
|
})[];
|
|
809
|
-
readonly
|
|
810
|
-
readonly
|
|
811
|
-
|
|
812
|
-
readonly
|
|
803
|
+
readonly configurationUpdatedAt: (string) & readonlyP;
|
|
804
|
+
readonly archivedAt: (Date | null) & readonlyP;
|
|
805
|
+
status: DatasourceStatus;
|
|
806
|
+
readonly hasWarnings: (boolean) & readonlyP;
|
|
813
807
|
};
|
|
814
|
-
export declare type IngesterDatasource =
|
|
815
|
-
readonly
|
|
808
|
+
export declare type IngesterDatasource = Pick___id_string_companyId_string_resourceGroupIds_string_Array_mode_DatasourceStatus_readonlyhasWarnings_boolean___companyId_or_resourceGroupIds_or_mode_or_name_or_template_or_fetcher_or_storageOptions_or_versions_or_configurationUpdatedAt_or_archivedAt_or_status_or_hasWarnings_or_undefined_ & {
|
|
809
|
+
readonly id: (string) & readonlyP;
|
|
816
810
|
} & {
|
|
817
|
-
readonly
|
|
818
|
-
readonly
|
|
811
|
+
readonly createdAt: (Date) & readonlyP;
|
|
812
|
+
readonly updatedAt: (Date) & readonlyP;
|
|
819
813
|
};
|
|
820
814
|
export declare enum DatasourceVersionState {
|
|
821
815
|
LIVE = "LIVE",
|
|
@@ -824,296 +818,296 @@ export declare enum DatasourceVersionState {
|
|
|
824
818
|
INACTIVE = "INACTIVE"
|
|
825
819
|
}
|
|
826
820
|
export declare type Pick_WorkerDatasourceVersion__mode_or_state_or_type_or_fieldsMap_or_health_or_apiOptions_or_sample_or_textEncoding_or_format_or_aggregationPipeline_or_refresh_or_detectMissingFields_or_maximumEntries_or_pendingSteps_or_availableFieldsTypes_or_requiredFieldsTypes_or_uniqueFieldsTypes_or_batchSize_or_undefined_ = {
|
|
827
|
-
|
|
828
|
-
readonly
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
readonly
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
};
|
|
843
|
-
} | {
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
};
|
|
848
|
-
} | {
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
};
|
|
855
|
-
} | {
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
821
|
+
mode: "worker";
|
|
822
|
+
readonly state: (DatasourceVersionState) & readonlyP;
|
|
823
|
+
type: _name_DatasourceGenericSubType__ | _name_DatasourceProductSubType__ | _name_DatasourceLocationSubType__;
|
|
824
|
+
fieldsMap: FieldMap[];
|
|
825
|
+
readonly health: ("OK" | "WARNING" | "ERROR") & readonlyP;
|
|
826
|
+
apiOptions?: Pick__oauth_string_or_undefined_pagination__type_query_value_string___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined___NonFunctionPropertyNames_WorkerApiOptions__;
|
|
827
|
+
sample?: __x_string__unknown__;
|
|
828
|
+
textEncoding: string;
|
|
829
|
+
format: _type_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined__;
|
|
830
|
+
aggregationPipeline: ({
|
|
831
|
+
name: "unwind";
|
|
832
|
+
params: {
|
|
833
|
+
src: string;
|
|
834
|
+
dest: string;
|
|
835
|
+
allowEmpty?: boolean;
|
|
836
|
+
};
|
|
837
|
+
} | {
|
|
838
|
+
name: "extra_data_fields";
|
|
839
|
+
params: {
|
|
840
|
+
fieldNames: string[];
|
|
841
|
+
};
|
|
842
|
+
} | {
|
|
843
|
+
name: "merge";
|
|
844
|
+
params: {
|
|
845
|
+
fieldNames: string[];
|
|
846
|
+
datasourceId: string;
|
|
847
|
+
query: string;
|
|
848
|
+
};
|
|
849
|
+
} | {
|
|
850
|
+
name: "count";
|
|
851
|
+
params: {
|
|
852
|
+
fieldNames: string[];
|
|
853
|
+
datasourceId: string;
|
|
854
|
+
query: string;
|
|
861
855
|
};
|
|
862
856
|
})[];
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
readonly
|
|
867
|
-
|
|
857
|
+
refresh: _freq_number__ | _cron_string__ | _datasourceIds_string_Array__;
|
|
858
|
+
detectMissingFields: boolean;
|
|
859
|
+
maximumEntries?: number;
|
|
860
|
+
readonly pendingSteps?: (({
|
|
861
|
+
name: "configure_name";
|
|
868
862
|
} | {
|
|
869
|
-
|
|
863
|
+
name: "configure_resource_group_ids";
|
|
870
864
|
} | {
|
|
871
|
-
|
|
872
|
-
|
|
865
|
+
name: "configure_source";
|
|
866
|
+
mode?: "url" | "file";
|
|
873
867
|
} | {
|
|
874
|
-
|
|
868
|
+
name: "configure_fieldsmap";
|
|
875
869
|
} | {
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
870
|
+
name: "configure_field";
|
|
871
|
+
field: {
|
|
872
|
+
name: string;
|
|
873
|
+
type: FieldMapType;
|
|
880
874
|
};
|
|
881
875
|
} | {
|
|
882
|
-
|
|
883
|
-
|
|
876
|
+
name: "create_oauth_client";
|
|
877
|
+
configurationId: string;
|
|
884
878
|
} | {
|
|
885
|
-
|
|
886
|
-
|
|
879
|
+
name: "authorize_oauth_client";
|
|
880
|
+
slug: string;
|
|
887
881
|
} | {
|
|
888
|
-
|
|
882
|
+
name: "configure_thresholds";
|
|
889
883
|
} | {
|
|
890
|
-
|
|
884
|
+
name: "configure_content";
|
|
891
885
|
} | {
|
|
892
|
-
|
|
893
|
-
|
|
886
|
+
name: "configure_api_key";
|
|
887
|
+
slug: "partoo";
|
|
894
888
|
} | {
|
|
895
|
-
|
|
889
|
+
name: "patch";
|
|
896
890
|
} | {
|
|
897
|
-
|
|
891
|
+
name: "validate";
|
|
898
892
|
} | {
|
|
899
|
-
|
|
900
|
-
|
|
893
|
+
name: "configure_shopify_shop_name";
|
|
894
|
+
configurationId: string;
|
|
901
895
|
} | {
|
|
902
|
-
|
|
903
|
-
|
|
896
|
+
name: "inject_shopify_analytics_script";
|
|
897
|
+
configurationId: string;
|
|
904
898
|
} | {
|
|
905
|
-
|
|
899
|
+
name: "configure_shopify_analytics_script";
|
|
906
900
|
} | {
|
|
907
|
-
|
|
901
|
+
name: "configure_google_tag_manager";
|
|
908
902
|
} | {
|
|
909
|
-
|
|
903
|
+
name: "configure_reelevant_analytics_script";
|
|
910
904
|
} | {
|
|
911
|
-
|
|
905
|
+
name: "configure_twitter";
|
|
912
906
|
} | {
|
|
913
|
-
|
|
907
|
+
name: "configure_product_datasource_source";
|
|
914
908
|
} | {
|
|
915
|
-
|
|
909
|
+
name: "configure_tracking_datasource_source";
|
|
916
910
|
} | {
|
|
917
|
-
|
|
911
|
+
name: "configure_best_product_query";
|
|
918
912
|
} | {
|
|
919
|
-
|
|
913
|
+
name: "configure_best_product_field";
|
|
920
914
|
} | {
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
915
|
+
name: "google_my_business_set_url";
|
|
916
|
+
urls: {
|
|
917
|
+
getAccount: string;
|
|
918
|
+
final: string;
|
|
925
919
|
};
|
|
926
920
|
} | {
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
921
|
+
name: "setup_instagram";
|
|
922
|
+
urls: {
|
|
923
|
+
getAccount: string;
|
|
924
|
+
getAccountInfos: string;
|
|
925
|
+
final: string;
|
|
932
926
|
};
|
|
933
927
|
})[]) & readonlyP;
|
|
934
|
-
readonly
|
|
935
|
-
readonly
|
|
936
|
-
readonly
|
|
937
|
-
|
|
938
|
-
};
|
|
939
|
-
export declare type
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
readonly
|
|
945
|
-
readonly
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
} | Pick_WorkerDatasourceVersion__mode_or_state_or_type_or_fieldsMap_or_health_or_apiOptions_or_sample_or_textEncoding_or_format_or_aggregationPipeline_or_refresh_or_detectMissingFields_or_maximumEntries_or_pendingSteps_or_availableFieldsTypes_or_requiredFieldsTypes_or_uniqueFieldsTypes_or_batchSize_or_undefined_ & {
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
})[];
|
|
954
|
-
readonly
|
|
955
|
-
readonly
|
|
956
|
-
|
|
957
|
-
readonly
|
|
958
|
-
readonly
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
};
|
|
966
|
-
} | {
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
928
|
+
readonly availableFieldsTypes: (FieldMapType[]) & readonlyP;
|
|
929
|
+
readonly requiredFieldsTypes: (FieldMapType[][]) & readonlyP;
|
|
930
|
+
readonly uniqueFieldsTypes: (FieldMapType[]) & readonlyP;
|
|
931
|
+
batchSize: number;
|
|
932
|
+
};
|
|
933
|
+
export declare type Pick___id_string_companyId_string_resourceGroupIds_string_Array_mode_Threshold_Array_lastRunAt_Date_or_null_currentLiveVersion_string_or_null_pausedAt_Date_or_null_readonlyisPaused_boolean___companyId_or_resourceGroupIds_or_mode_or_name_or_template_or_fetcher_or_versions_or_configurationUpdatedAt_or_archivedAt_or_status_or_hasWarnings_or_contentVersion_or_thresholds_or_lastRunAt_or_currentLiveVersion_or_pausedAt_or_isPaused_or_undefined_ = {
|
|
934
|
+
companyId: string;
|
|
935
|
+
resourceGroupIds: string[];
|
|
936
|
+
mode: "worker";
|
|
937
|
+
name: string;
|
|
938
|
+
readonly template?: (string) & readonlyP;
|
|
939
|
+
readonly fetcher: (_name_DatasourceFetcherName_params_____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_RETAILS_params__datasourceIdStores_string_datasourceIdStock_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_FUEL_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_DRIVE_SLOTS_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_BEST_WESTERN_HOTELS_params__datasourceIdAvailablity_string____ | _name_DatasourceCustomFetcherName_FDJ_BETS_params_____ | _name_DatasourceCustomFetcherName_SARENZA_SIZES_params__datasourceIdSizes_string____ | _name_FieldMapType_excludedEventName_string_fallbackEventName_string_fallbackEventDuration_number____ | _name_DatasourceCustomFetcherName_RENAULT_PRICES_params_____) & readonlyP;
|
|
940
|
+
versions: ((Pick_WorkerDatasourceVersion__mode_or_state_or_type_or_fieldsMap_or_health_or_apiOptions_or_sample_or_textEncoding_or_format_or_aggregationPipeline_or_refresh_or_detectMissingFields_or_maximumEntries_or_pendingSteps_or_availableFieldsTypes_or_requiredFieldsTypes_or_uniqueFieldsTypes_or_batchSize_or_undefined_ & {
|
|
941
|
+
fileName: string;
|
|
942
|
+
isAPI: false;
|
|
943
|
+
}) | (Pick_WorkerDatasourceVersion__mode_or_state_or_type_or_fieldsMap_or_health_or_apiOptions_or_sample_or_textEncoding_or_format_or_aggregationPipeline_or_refresh_or_detectMissingFields_or_maximumEntries_or_pendingSteps_or_availableFieldsTypes_or_requiredFieldsTypes_or_uniqueFieldsTypes_or_batchSize_or_undefined_ & {
|
|
944
|
+
url: string;
|
|
945
|
+
urls: string[];
|
|
946
|
+
isAPI: true;
|
|
947
|
+
}))[];
|
|
948
|
+
readonly configurationUpdatedAt: (string) & readonlyP;
|
|
949
|
+
readonly archivedAt: (Date | null) & readonlyP;
|
|
950
|
+
status: DatasourceStatus;
|
|
951
|
+
readonly hasWarnings: (boolean) & readonlyP;
|
|
952
|
+
readonly contentVersion: (number) & readonlyP;
|
|
953
|
+
thresholds: ({
|
|
954
|
+
type: "too_many_invalid_entries";
|
|
955
|
+
value: number;
|
|
956
|
+
trigger: {
|
|
957
|
+
type: "error";
|
|
958
|
+
value: "too_many_invalid_entries";
|
|
959
|
+
};
|
|
960
|
+
} | {
|
|
961
|
+
type: "entries_drop_rate_too_high";
|
|
962
|
+
value: number;
|
|
963
|
+
trigger: {
|
|
964
|
+
type: "warning";
|
|
965
|
+
value: "entries_drop_rate_too_high";
|
|
972
966
|
} | {
|
|
973
|
-
|
|
974
|
-
|
|
967
|
+
type: "error";
|
|
968
|
+
value: "entries_drop_rate_too_high";
|
|
975
969
|
};
|
|
976
970
|
})[];
|
|
977
|
-
readonly
|
|
978
|
-
readonly
|
|
979
|
-
readonly
|
|
980
|
-
readonly
|
|
971
|
+
readonly lastRunAt: (Date | null) & readonlyP;
|
|
972
|
+
readonly currentLiveVersion: (string | null) & readonlyP;
|
|
973
|
+
readonly pausedAt: (Date | null) & readonlyP;
|
|
974
|
+
readonly isPaused: (boolean) & readonlyP;
|
|
981
975
|
};
|
|
982
|
-
export declare type WorkerDatasource =
|
|
983
|
-
readonly
|
|
976
|
+
export declare type WorkerDatasource = Pick___id_string_companyId_string_resourceGroupIds_string_Array_mode_Threshold_Array_lastRunAt_Date_or_null_currentLiveVersion_string_or_null_pausedAt_Date_or_null_readonlyisPaused_boolean___companyId_or_resourceGroupIds_or_mode_or_name_or_template_or_fetcher_or_versions_or_configurationUpdatedAt_or_archivedAt_or_status_or_hasWarnings_or_contentVersion_or_thresholds_or_lastRunAt_or_currentLiveVersion_or_pausedAt_or_isPaused_or_undefined_ & {
|
|
977
|
+
readonly id: (string) & readonlyP;
|
|
984
978
|
} & {
|
|
985
|
-
readonly
|
|
986
|
-
readonly
|
|
979
|
+
readonly createdAt: (Date) & readonlyP;
|
|
980
|
+
readonly updatedAt: (Date) & readonlyP;
|
|
987
981
|
};
|
|
988
982
|
export declare type Pick_Pick__mode_ProxyDatasourceVersion___mode_or_state_or_type_or_fieldsMap_or_apiOptions_or_sample_or_textEncoding_or_urls_or_format_or_refresh_or_url_or_pendingSteps_or_availableFieldsTypes_or_requiredFieldsTypes_or_uniqueFieldsTypes_or_undefined_ = {
|
|
989
|
-
|
|
990
|
-
readonly
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
readonly
|
|
1000
|
-
readonly
|
|
1001
|
-
|
|
983
|
+
mode: "proxy";
|
|
984
|
+
readonly state: ("LIVE" | "DRAFT" | "INACTIVE") & readonlyP;
|
|
985
|
+
type: _name_DatasourceGenericSubType__;
|
|
986
|
+
fieldsMap: FieldMap[];
|
|
987
|
+
apiOptions?: Pick__oauth_string_or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_variables_VariableDefinition_Array_or_undefined___NonFunctionPropertyNames_ProxyApiOptions__;
|
|
988
|
+
sample?: __x_string__unknown__;
|
|
989
|
+
textEncoding: string;
|
|
990
|
+
urls: string[];
|
|
991
|
+
format: _type_DatasourceFormat_options___x_string__string___overrided_boolean_or_undefined__;
|
|
992
|
+
refresh: _freq_number__;
|
|
993
|
+
readonly url?: (string) & readonlyP;
|
|
994
|
+
readonly pendingSteps?: (({
|
|
995
|
+
name: "configure_name";
|
|
1002
996
|
} | {
|
|
1003
|
-
|
|
997
|
+
name: "configure_resource_group_ids";
|
|
1004
998
|
} | {
|
|
1005
|
-
|
|
1006
|
-
|
|
999
|
+
name: "configure_source";
|
|
1000
|
+
mode?: "url" | "file";
|
|
1007
1001
|
} | {
|
|
1008
|
-
|
|
1002
|
+
name: "configure_fieldsmap";
|
|
1009
1003
|
} | {
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1004
|
+
name: "configure_field";
|
|
1005
|
+
field: {
|
|
1006
|
+
name: string;
|
|
1007
|
+
type: FieldMapType;
|
|
1014
1008
|
};
|
|
1015
1009
|
} | {
|
|
1016
|
-
|
|
1017
|
-
|
|
1010
|
+
name: "create_oauth_client";
|
|
1011
|
+
configurationId: string;
|
|
1018
1012
|
} | {
|
|
1019
|
-
|
|
1020
|
-
|
|
1013
|
+
name: "authorize_oauth_client";
|
|
1014
|
+
slug: string;
|
|
1021
1015
|
} | {
|
|
1022
|
-
|
|
1016
|
+
name: "configure_thresholds";
|
|
1023
1017
|
} | {
|
|
1024
|
-
|
|
1018
|
+
name: "configure_content";
|
|
1025
1019
|
} | {
|
|
1026
|
-
|
|
1027
|
-
|
|
1020
|
+
name: "configure_api_key";
|
|
1021
|
+
slug: "partoo";
|
|
1028
1022
|
} | {
|
|
1029
|
-
|
|
1023
|
+
name: "patch";
|
|
1030
1024
|
} | {
|
|
1031
|
-
|
|
1025
|
+
name: "validate";
|
|
1032
1026
|
} | {
|
|
1033
|
-
|
|
1034
|
-
|
|
1027
|
+
name: "configure_shopify_shop_name";
|
|
1028
|
+
configurationId: string;
|
|
1035
1029
|
} | {
|
|
1036
|
-
|
|
1037
|
-
|
|
1030
|
+
name: "inject_shopify_analytics_script";
|
|
1031
|
+
configurationId: string;
|
|
1038
1032
|
} | {
|
|
1039
|
-
|
|
1033
|
+
name: "configure_shopify_analytics_script";
|
|
1040
1034
|
} | {
|
|
1041
|
-
|
|
1035
|
+
name: "configure_google_tag_manager";
|
|
1042
1036
|
} | {
|
|
1043
|
-
|
|
1037
|
+
name: "configure_reelevant_analytics_script";
|
|
1044
1038
|
} | {
|
|
1045
|
-
|
|
1039
|
+
name: "configure_twitter";
|
|
1046
1040
|
} | {
|
|
1047
|
-
|
|
1041
|
+
name: "configure_product_datasource_source";
|
|
1048
1042
|
} | {
|
|
1049
|
-
|
|
1043
|
+
name: "configure_tracking_datasource_source";
|
|
1050
1044
|
} | {
|
|
1051
|
-
|
|
1045
|
+
name: "configure_best_product_query";
|
|
1052
1046
|
} | {
|
|
1053
|
-
|
|
1047
|
+
name: "configure_best_product_field";
|
|
1054
1048
|
} | {
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1049
|
+
name: "google_my_business_set_url";
|
|
1050
|
+
urls: {
|
|
1051
|
+
getAccount: string;
|
|
1052
|
+
final: string;
|
|
1059
1053
|
};
|
|
1060
1054
|
} | {
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1055
|
+
name: "setup_instagram";
|
|
1056
|
+
urls: {
|
|
1057
|
+
getAccount: string;
|
|
1058
|
+
getAccountInfos: string;
|
|
1059
|
+
final: string;
|
|
1066
1060
|
};
|
|
1067
1061
|
})[]) & readonlyP;
|
|
1068
|
-
readonly
|
|
1069
|
-
readonly
|
|
1070
|
-
readonly
|
|
1071
|
-
};
|
|
1072
|
-
export declare type
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
readonly
|
|
1078
|
-
readonly
|
|
1079
|
-
|
|
1080
|
-
readonly
|
|
1062
|
+
readonly availableFieldsTypes: (FieldMapType[]) & readonlyP;
|
|
1063
|
+
readonly requiredFieldsTypes: (FieldMapType[][]) & readonlyP;
|
|
1064
|
+
readonly uniqueFieldsTypes: (FieldMapType[]) & readonlyP;
|
|
1065
|
+
};
|
|
1066
|
+
export declare type Pick___id_string_companyId_string_resourceGroupIds_string_Array_mode_DatasourceStatus_readonlyhasWarnings_boolean___companyId_or_resourceGroupIds_or_mode_or_name_or_template_or_fetcher_or_versions_or_configurationUpdatedAt_or_archivedAt_or_status_or_hasWarnings_or_undefined_ = {
|
|
1067
|
+
companyId: string;
|
|
1068
|
+
resourceGroupIds: string[];
|
|
1069
|
+
mode: "proxy";
|
|
1070
|
+
name: string;
|
|
1071
|
+
readonly template?: (string) & readonlyP;
|
|
1072
|
+
readonly fetcher: (_name_DatasourceFetcherName_params_____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_RETAILS_params__datasourceIdStores_string_datasourceIdStock_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_FUEL_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_CARREFOUR_STORES_WITH_DRIVE_SLOTS_params__datasourceIdStores_string____ | _name_DatasourceCustomFetcherName_BEST_WESTERN_HOTELS_params__datasourceIdAvailablity_string____ | _name_DatasourceCustomFetcherName_FDJ_BETS_params_____ | _name_DatasourceCustomFetcherName_SARENZA_SIZES_params__datasourceIdSizes_string____ | _name_FieldMapType_excludedEventName_string_fallbackEventName_string_fallbackEventDuration_number____ | _name_DatasourceCustomFetcherName_RENAULT_PRICES_params_____) & readonlyP;
|
|
1073
|
+
versions: (Pick_Pick__mode_ProxyDatasourceVersion___mode_or_state_or_type_or_fieldsMap_or_apiOptions_or_sample_or_textEncoding_or_urls_or_format_or_refresh_or_url_or_pendingSteps_or_availableFieldsTypes_or_requiredFieldsTypes_or_uniqueFieldsTypes_or_undefined_ & {
|
|
1074
|
+
readonly health: ("OK" | "WARNING" | "ERROR") & readonlyP;
|
|
1081
1075
|
})[];
|
|
1082
|
-
readonly
|
|
1083
|
-
readonly
|
|
1084
|
-
|
|
1085
|
-
readonly
|
|
1076
|
+
readonly configurationUpdatedAt: (string) & readonlyP;
|
|
1077
|
+
readonly archivedAt: (Date | null) & readonlyP;
|
|
1078
|
+
status: DatasourceStatus;
|
|
1079
|
+
readonly hasWarnings: (boolean) & readonlyP;
|
|
1086
1080
|
};
|
|
1087
|
-
export declare type ProxyDatasource =
|
|
1088
|
-
readonly
|
|
1081
|
+
export declare type ProxyDatasource = Pick___id_string_companyId_string_resourceGroupIds_string_Array_mode_DatasourceStatus_readonlyhasWarnings_boolean___companyId_or_resourceGroupIds_or_mode_or_name_or_template_or_fetcher_or_versions_or_configurationUpdatedAt_or_archivedAt_or_status_or_hasWarnings_or_undefined_ & {
|
|
1082
|
+
readonly id: (string) & readonlyP;
|
|
1089
1083
|
} & {
|
|
1090
|
-
readonly
|
|
1091
|
-
readonly
|
|
1084
|
+
readonly createdAt: (Date) & readonlyP;
|
|
1085
|
+
readonly updatedAt: (Date) & readonlyP;
|
|
1092
1086
|
};
|
|
1093
1087
|
export declare type DatasourceGeneric = {
|
|
1094
|
-
|
|
1095
|
-
|
|
1088
|
+
name: "generic";
|
|
1089
|
+
subtype: DatasourceGenericSubType;
|
|
1096
1090
|
};
|
|
1097
1091
|
export declare type DatasourceProduct = {
|
|
1098
|
-
|
|
1099
|
-
|
|
1092
|
+
name: "product";
|
|
1093
|
+
subtype: DatasourceProductSubType;
|
|
1100
1094
|
};
|
|
1101
1095
|
export declare type DatasourceLocation = {
|
|
1102
|
-
|
|
1103
|
-
|
|
1096
|
+
name: "location";
|
|
1097
|
+
subtype: DatasourceLocationSubType;
|
|
1104
1098
|
};
|
|
1105
1099
|
export declare type DatasourceAnalytics = {
|
|
1106
|
-
|
|
1107
|
-
|
|
1100
|
+
name: "analytics";
|
|
1101
|
+
subtype: DatasourceAnalyticsSubType;
|
|
1108
1102
|
};
|
|
1109
1103
|
export declare type QueriableField = {
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
readonly
|
|
1104
|
+
required: boolean;
|
|
1105
|
+
unique: boolean;
|
|
1106
|
+
sortable: boolean;
|
|
1107
|
+
enum?: (string | number)[];
|
|
1108
|
+
allowedOperators: (("$eq" | "$ne" | "$contains" | "$notcontains" | "$empty" | "eq" | "ne" | "contains" | "notcontains" | "empty" | "$neq" | "$nne" | "$lt" | "$lte" | "$gt" | "$gte" | "neq" | "nne" | "lt" | "lte" | "gt" | "gte" | "$range" | "range") | ("$eq" | "$ne" | "$contains" | "$notcontains" | "$empty" | "eq" | "ne" | "contains" | "notcontains" | "empty" | "$neq" | "$nne" | "$lt" | "$lte" | "$gt" | "$gte" | "neq" | "nne" | "lt" | "lte" | "gt" | "gte" | "$range" | "range"))[];
|
|
1109
|
+
name: string;
|
|
1110
|
+
readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
|
|
1117
1111
|
};
|
|
1118
1112
|
export declare enum DatasourceType {
|
|
1119
1113
|
GENERIC = "generic",
|
|
@@ -1123,1045 +1117,1029 @@ export declare enum DatasourceType {
|
|
|
1123
1117
|
}
|
|
1124
1118
|
export declare type Document = AnyValue;
|
|
1125
1119
|
export declare type LogLevel = 0 | 1 | 2;
|
|
1126
|
-
export declare type
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
};
|
|
1136
|
-
export declare type DatasourceLog =
|
|
1137
|
-
readonly
|
|
1120
|
+
export declare type Pick__companyId_string_payload_unknown_type_DatasourceLog_companyId_or_toJSON_or_payload_or_type_or_contentVersion_or_datasourceId_or_date_or_level_or_entryIndex___ = {
|
|
1121
|
+
companyId: string;
|
|
1122
|
+
payload: AnyValue;
|
|
1123
|
+
type: "too_many_invalid_entries" | "entries_drop_rate_too_high" | "failed_to_pull" | "fatal" | "entries_drop_rate_too_high" | "refresh_time_too_small" | "missing_fields" | "start" | "end" | "content_update" | "geocoding_address" | "geocoding_country" | "invalid_type" | "invalid_unwind_source" | "required_values_empty";
|
|
1124
|
+
contentVersion: number;
|
|
1125
|
+
datasourceId: string;
|
|
1126
|
+
date: string;
|
|
1127
|
+
level: LogLevel;
|
|
1128
|
+
entryIndex?: number;
|
|
1129
|
+
};
|
|
1130
|
+
export declare type DatasourceLog = Pick__companyId_string_payload_unknown_type_DatasourceLog_companyId_or_toJSON_or_payload_or_type_or_contentVersion_or_datasourceId_or_date_or_level_or_entryIndex___ & {
|
|
1131
|
+
readonly id: (string) & readonlyP;
|
|
1138
1132
|
} & {
|
|
1139
|
-
|
|
1140
|
-
};
|
|
1141
|
-
export declare type DatasourceFormatOptions = {
|
|
1142
|
-
[key: string]: string;
|
|
1133
|
+
version: string;
|
|
1143
1134
|
};
|
|
1144
|
-
export declare type
|
|
1135
|
+
export declare type DatasourceFormatOptions = {};
|
|
1136
|
+
export declare type WorkerApiOptions = Pick__oauth_string_or_undefined_pagination__type_query_value_string___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined___NonFunctionPropertyNames_WorkerApiOptions__;
|
|
1145
1137
|
export declare type Format = {
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1138
|
+
type: DatasourceFormat;
|
|
1139
|
+
options: DatasourceFormatOptions;
|
|
1140
|
+
overrided?: boolean;
|
|
1149
1141
|
};
|
|
1150
1142
|
export declare type Partial_Pick_WorkerDatasourceVersion_apiOptions_or_sample_or_textEncoding_or_format__ = {
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
'textEncoding'?: string;
|
|
1156
|
-
'format'?: Format;
|
|
1143
|
+
apiOptions?: WorkerApiOptions;
|
|
1144
|
+
sample?: {};
|
|
1145
|
+
textEncoding?: string;
|
|
1146
|
+
format?: Format;
|
|
1157
1147
|
};
|
|
1158
1148
|
export declare type Partial_Pick_WorkerDatasourceVersion_textEncoding_or_format__ = {
|
|
1159
|
-
|
|
1160
|
-
|
|
1149
|
+
textEncoding?: string;
|
|
1150
|
+
format?: Format;
|
|
1161
1151
|
};
|
|
1162
1152
|
export declare type Partial_Pick_PullDatasourceVersion_sample_or_textEncoding_or_format__ = {
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
'textEncoding'?: string;
|
|
1167
|
-
'format'?: Format;
|
|
1153
|
+
sample?: {};
|
|
1154
|
+
textEncoding?: string;
|
|
1155
|
+
format?: Format;
|
|
1168
1156
|
};
|
|
1169
|
-
export declare type
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1157
|
+
export declare type Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_refresh_or_detectMissingFields_or_batchSize__ = {
|
|
1158
|
+
aggregationPipeline?: ({
|
|
1159
|
+
name: "unwind";
|
|
1160
|
+
params: {
|
|
1161
|
+
src: string;
|
|
1162
|
+
dest: string;
|
|
1163
|
+
allowEmpty?: boolean;
|
|
1176
1164
|
};
|
|
1177
1165
|
} | {
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1166
|
+
name: "extra_data_fields";
|
|
1167
|
+
params: {
|
|
1168
|
+
fieldNames: string[];
|
|
1181
1169
|
};
|
|
1182
1170
|
} | {
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1171
|
+
name: "merge";
|
|
1172
|
+
params: {
|
|
1173
|
+
fieldNames: string[];
|
|
1174
|
+
datasourceId: string;
|
|
1175
|
+
query: string;
|
|
1188
1176
|
};
|
|
1189
1177
|
} | {
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1178
|
+
name: "count";
|
|
1179
|
+
params: {
|
|
1180
|
+
fieldNames: string[];
|
|
1181
|
+
datasourceId: string;
|
|
1182
|
+
query: string;
|
|
1195
1183
|
};
|
|
1196
1184
|
})[];
|
|
1197
|
-
|
|
1198
|
-
|
|
1185
|
+
refresh?: {
|
|
1186
|
+
freq: number;
|
|
1199
1187
|
} | {
|
|
1200
|
-
|
|
1188
|
+
cron: string;
|
|
1201
1189
|
} | {
|
|
1202
|
-
|
|
1190
|
+
datasourceIds: string[];
|
|
1203
1191
|
};
|
|
1204
|
-
|
|
1192
|
+
detectMissingFields?: boolean;
|
|
1193
|
+
batchSize?: number;
|
|
1205
1194
|
};
|
|
1206
|
-
export declare type ProxyApiOptions =
|
|
1195
|
+
export declare type ProxyApiOptions = Pick__oauth_string_or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_variables_VariableDefinition_Array_or_undefined___NonFunctionPropertyNames_ProxyApiOptions__;
|
|
1207
1196
|
export declare type Partial_Pick_ProxyDatasourceVersion_apiOptions_or_sample_or_textEncoding_or_format__ = {
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
'textEncoding'?: string;
|
|
1213
|
-
'format'?: Format;
|
|
1197
|
+
apiOptions?: ProxyApiOptions;
|
|
1198
|
+
sample?: {};
|
|
1199
|
+
textEncoding?: string;
|
|
1200
|
+
format?: Format;
|
|
1214
1201
|
};
|
|
1215
1202
|
export declare type ProxyRefresh = {
|
|
1216
|
-
|
|
1203
|
+
freq: number;
|
|
1217
1204
|
};
|
|
1218
1205
|
export declare type Pick_ProxyDatasourceVersion_refresh_ = {
|
|
1219
|
-
|
|
1220
|
-
};
|
|
1221
|
-
export declare type
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
'conditions': (Pick_Condition_path_or_operator_ & {
|
|
1281
|
-
'evaluateValue': string;
|
|
1206
|
+
refresh: ProxyRefresh;
|
|
1207
|
+
};
|
|
1208
|
+
export declare type _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_WorkerApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__ = {
|
|
1209
|
+
urls: string[];
|
|
1210
|
+
ignoreMissingLiveFields?: true;
|
|
1211
|
+
apiOptions?: WorkerApiOptions;
|
|
1212
|
+
sample?: {};
|
|
1213
|
+
textEncoding: string;
|
|
1214
|
+
format: Format;
|
|
1215
|
+
};
|
|
1216
|
+
export declare type _file_string_ignoreMissingLiveFields_string_textEncoding_string_format_Format__ = {
|
|
1217
|
+
file: string;
|
|
1218
|
+
ignoreMissingLiveFields?: string;
|
|
1219
|
+
textEncoding: string;
|
|
1220
|
+
format: Format;
|
|
1221
|
+
};
|
|
1222
|
+
export declare type _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____ = {
|
|
1223
|
+
name: string;
|
|
1224
|
+
type: FieldMapType;
|
|
1225
|
+
selected: boolean;
|
|
1226
|
+
rules: (({
|
|
1227
|
+
name: "static" | "path";
|
|
1228
|
+
params: {
|
|
1229
|
+
value: string;
|
|
1230
|
+
};
|
|
1231
|
+
} | {
|
|
1232
|
+
name: "path";
|
|
1233
|
+
params: {
|
|
1234
|
+
fromRoot: true;
|
|
1235
|
+
value: string;
|
|
1236
|
+
};
|
|
1237
|
+
}) | ({
|
|
1238
|
+
name: "static" | "path";
|
|
1239
|
+
params: {
|
|
1240
|
+
value: string;
|
|
1241
|
+
};
|
|
1242
|
+
} | {
|
|
1243
|
+
name: "path";
|
|
1244
|
+
params: {
|
|
1245
|
+
fromRoot: true;
|
|
1246
|
+
value: string;
|
|
1247
|
+
};
|
|
1248
|
+
} | {
|
|
1249
|
+
name: "array_find";
|
|
1250
|
+
params: {
|
|
1251
|
+
key: string;
|
|
1252
|
+
operator: "=";
|
|
1253
|
+
value: string | number;
|
|
1254
|
+
};
|
|
1255
|
+
} | {
|
|
1256
|
+
name: "array_find";
|
|
1257
|
+
params: {
|
|
1258
|
+
key: string;
|
|
1259
|
+
operator: "=";
|
|
1260
|
+
valuePath: string;
|
|
1261
|
+
};
|
|
1262
|
+
} | {
|
|
1263
|
+
name: "array_find";
|
|
1264
|
+
params: {
|
|
1265
|
+
conditions: (Pick_Condition_path_or_operator_ & {
|
|
1266
|
+
evaluateValue: string;
|
|
1282
1267
|
})[];
|
|
1283
1268
|
};
|
|
1284
1269
|
} | {
|
|
1285
|
-
|
|
1286
|
-
|
|
1270
|
+
name: "fallback";
|
|
1271
|
+
params: FieldMapFallbackRulePayload;
|
|
1287
1272
|
} | {
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
[key: string]: string;
|
|
1292
|
-
} | (number)[] | {
|
|
1293
|
-
[key: string]: number;
|
|
1294
|
-
};
|
|
1273
|
+
name: "fallback";
|
|
1274
|
+
params: Pick_FieldMapFallbackRulePayload_valuePath_or_exit_ & {
|
|
1275
|
+
staticValue: string | number | string[] | {} | number[] | {};
|
|
1295
1276
|
};
|
|
1296
1277
|
} | {
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
})[];
|
|
1278
|
+
name: "fallback_if";
|
|
1279
|
+
params: FieldMapFallbackRulePayload & {
|
|
1280
|
+
conditions: (Condition | (Pick_Condition_path_or_operator_ & {
|
|
1281
|
+
evaluateValue: string;
|
|
1282
|
+
}))[];
|
|
1302
1283
|
};
|
|
1303
1284
|
} | {
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1285
|
+
name: "exclude_from_record";
|
|
1286
|
+
params: {
|
|
1287
|
+
keys: string[];
|
|
1307
1288
|
};
|
|
1308
1289
|
} | {
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1290
|
+
name: "decrypt";
|
|
1291
|
+
params: {
|
|
1292
|
+
passwordPrefixPath?: string;
|
|
1312
1293
|
};
|
|
1313
1294
|
} | {
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1295
|
+
name: "interpolate";
|
|
1296
|
+
params: {
|
|
1297
|
+
value: string;
|
|
1317
1298
|
};
|
|
1318
|
-
})[];
|
|
1319
|
-
|
|
1320
|
-
readonly
|
|
1299
|
+
}))[];
|
|
1300
|
+
source?: FieldSource;
|
|
1301
|
+
readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
|
|
1321
1302
|
};
|
|
1322
|
-
export declare type
|
|
1323
|
-
export declare type
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
'textEncoding': string;
|
|
1328
|
-
'format': Format;
|
|
1303
|
+
export declare type __x_string__never__ = {};
|
|
1304
|
+
export declare type _sample___key_string__unknown___textEncoding_string_format_Format__ = {
|
|
1305
|
+
sample?: {};
|
|
1306
|
+
textEncoding: string;
|
|
1307
|
+
format: Format;
|
|
1329
1308
|
};
|
|
1330
|
-
export declare type
|
|
1331
|
-
|
|
1309
|
+
export declare type _value_string__ = {
|
|
1310
|
+
value: string;
|
|
1332
1311
|
};
|
|
1333
|
-
export declare type
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1312
|
+
export declare type _aggregationPipeline_AggregationStep_Array_refresh_WorkerRefresh_detectMissingFields_boolean_batchSize_number__ = {
|
|
1313
|
+
aggregationPipeline: ({
|
|
1314
|
+
name: "unwind";
|
|
1315
|
+
params: {
|
|
1316
|
+
src: string;
|
|
1317
|
+
dest: string;
|
|
1318
|
+
allowEmpty?: boolean;
|
|
1340
1319
|
};
|
|
1341
1320
|
} | {
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1321
|
+
name: "extra_data_fields";
|
|
1322
|
+
params: {
|
|
1323
|
+
fieldNames: string[];
|
|
1345
1324
|
};
|
|
1346
1325
|
} | {
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1326
|
+
name: "merge";
|
|
1327
|
+
params: {
|
|
1328
|
+
fieldNames: string[];
|
|
1329
|
+
datasourceId: string;
|
|
1330
|
+
query: string;
|
|
1352
1331
|
};
|
|
1353
1332
|
} | {
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1333
|
+
name: "count";
|
|
1334
|
+
params: {
|
|
1335
|
+
fieldNames: string[];
|
|
1336
|
+
datasourceId: string;
|
|
1337
|
+
query: string;
|
|
1359
1338
|
};
|
|
1360
1339
|
})[];
|
|
1361
|
-
|
|
1362
|
-
|
|
1340
|
+
refresh: {
|
|
1341
|
+
freq: number;
|
|
1363
1342
|
} | {
|
|
1364
|
-
|
|
1343
|
+
cron: string;
|
|
1365
1344
|
} | {
|
|
1366
|
-
|
|
1345
|
+
datasourceIds: string[];
|
|
1367
1346
|
};
|
|
1368
|
-
|
|
1347
|
+
detectMissingFields: boolean;
|
|
1348
|
+
batchSize: number;
|
|
1369
1349
|
};
|
|
1370
|
-
export declare type
|
|
1371
|
-
|
|
1372
|
-
|
|
1350
|
+
export declare type _type_user_or_hashtag_value_string__ = {
|
|
1351
|
+
type: "user" | "hashtag";
|
|
1352
|
+
value: string;
|
|
1373
1353
|
};
|
|
1374
|
-
export declare type
|
|
1375
|
-
|
|
1354
|
+
export declare type _datasourceId_string__ = {
|
|
1355
|
+
datasourceId: string;
|
|
1376
1356
|
};
|
|
1377
|
-
export declare type
|
|
1378
|
-
|
|
1357
|
+
export declare type _query_string__ = {
|
|
1358
|
+
query: string;
|
|
1379
1359
|
};
|
|
1380
|
-
export declare type
|
|
1381
|
-
|
|
1360
|
+
export declare type _field_string__ = {
|
|
1361
|
+
field: string;
|
|
1382
1362
|
};
|
|
1383
|
-
export declare type
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
'textEncoding': string;
|
|
1391
|
-
'format': Format;
|
|
1363
|
+
export declare type _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_ProxyApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__ = {
|
|
1364
|
+
urls: string[];
|
|
1365
|
+
ignoreMissingLiveFields?: true;
|
|
1366
|
+
apiOptions?: ProxyApiOptions;
|
|
1367
|
+
sample?: {};
|
|
1368
|
+
textEncoding: string;
|
|
1369
|
+
format: Format;
|
|
1392
1370
|
};
|
|
1393
|
-
export declare type
|
|
1394
|
-
|
|
1371
|
+
export declare type _refresh_ProxyRefresh__ = {
|
|
1372
|
+
refresh: ProxyRefresh;
|
|
1395
1373
|
};
|
|
1396
1374
|
export declare type CurrentSteps = {
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
} & {
|
|
1400
|
-
|
|
1401
|
-
} | {
|
|
1402
|
-
|
|
1403
|
-
} & {
|
|
1404
|
-
|
|
1405
|
-
} | {
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
} & {
|
|
1409
|
-
|
|
1410
|
-
} | {
|
|
1411
|
-
|
|
1412
|
-
} & {
|
|
1413
|
-
|
|
1414
|
-
} | {
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
};
|
|
1420
|
-
} & {
|
|
1421
|
-
|
|
1422
|
-
} | {
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
} & {
|
|
1426
|
-
|
|
1427
|
-
} | {
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
} & {
|
|
1431
|
-
|
|
1432
|
-
} | {
|
|
1433
|
-
|
|
1434
|
-
} & {
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1375
|
+
current: ({
|
|
1376
|
+
name: "configure_name";
|
|
1377
|
+
} & {
|
|
1378
|
+
value?: string;
|
|
1379
|
+
}) | ({
|
|
1380
|
+
name: "configure_resource_group_ids";
|
|
1381
|
+
} & {
|
|
1382
|
+
value?: string[];
|
|
1383
|
+
}) | ({
|
|
1384
|
+
name: "configure_source";
|
|
1385
|
+
mode?: "url" | "file";
|
|
1386
|
+
} & {
|
|
1387
|
+
value?: _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_WorkerApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__ | _file_string_ignoreMissingLiveFields_string_textEncoding_string_format_Format__;
|
|
1388
|
+
}) | ({
|
|
1389
|
+
name: "configure_fieldsmap";
|
|
1390
|
+
} & {
|
|
1391
|
+
value?: FieldMap[];
|
|
1392
|
+
}) | ({
|
|
1393
|
+
name: "configure_field";
|
|
1394
|
+
field: {
|
|
1395
|
+
name: string;
|
|
1396
|
+
type: FieldMapType;
|
|
1397
|
+
};
|
|
1398
|
+
} & {
|
|
1399
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1400
|
+
}) | ({
|
|
1401
|
+
name: "create_oauth_client";
|
|
1402
|
+
configurationId: string;
|
|
1403
|
+
} & {
|
|
1404
|
+
value?: __x_string__never__;
|
|
1405
|
+
}) | ({
|
|
1406
|
+
name: "authorize_oauth_client";
|
|
1407
|
+
slug: string;
|
|
1408
|
+
} & {
|
|
1409
|
+
value?: __x_string__never__;
|
|
1410
|
+
}) | ({
|
|
1411
|
+
name: "configure_thresholds";
|
|
1412
|
+
} & {
|
|
1413
|
+
value?: ({
|
|
1414
|
+
type: "too_many_invalid_entries";
|
|
1415
|
+
value: number;
|
|
1416
|
+
trigger: {
|
|
1417
|
+
type: "error";
|
|
1418
|
+
value: "too_many_invalid_entries";
|
|
1441
1419
|
};
|
|
1442
1420
|
} | {
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1421
|
+
type: "entries_drop_rate_too_high";
|
|
1422
|
+
value: number;
|
|
1423
|
+
trigger: {
|
|
1424
|
+
type: "warning";
|
|
1425
|
+
value: "entries_drop_rate_too_high";
|
|
1448
1426
|
} | {
|
|
1449
|
-
|
|
1450
|
-
|
|
1427
|
+
type: "error";
|
|
1428
|
+
value: "entries_drop_rate_too_high";
|
|
1451
1429
|
};
|
|
1452
1430
|
})[];
|
|
1453
|
-
} | {
|
|
1454
|
-
|
|
1455
|
-
} & {
|
|
1456
|
-
|
|
1457
|
-
} | {
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
} & {
|
|
1461
|
-
|
|
1462
|
-
} | {
|
|
1463
|
-
|
|
1464
|
-
} & {
|
|
1465
|
-
|
|
1466
|
-
} | {
|
|
1467
|
-
|
|
1468
|
-
} & {
|
|
1469
|
-
|
|
1470
|
-
} | {
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
} & {
|
|
1474
|
-
|
|
1475
|
-
} | {
|
|
1476
|
-
|
|
1477
|
-
} & {
|
|
1478
|
-
|
|
1479
|
-
} | {
|
|
1480
|
-
|
|
1481
|
-
} & {
|
|
1482
|
-
|
|
1483
|
-
} | {
|
|
1484
|
-
|
|
1485
|
-
} & {
|
|
1486
|
-
|
|
1487
|
-
} | {
|
|
1488
|
-
|
|
1489
|
-
} & {
|
|
1490
|
-
|
|
1491
|
-
} | {
|
|
1492
|
-
|
|
1493
|
-
} & {
|
|
1494
|
-
|
|
1495
|
-
} | {
|
|
1496
|
-
|
|
1497
|
-
} & {
|
|
1498
|
-
|
|
1499
|
-
} | {
|
|
1500
|
-
|
|
1501
|
-
} & {
|
|
1502
|
-
|
|
1503
|
-
} | {
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
} & {
|
|
1507
|
-
|
|
1508
|
-
} | {
|
|
1509
|
-
|
|
1510
|
-
} & {
|
|
1511
|
-
|
|
1512
|
-
} | {
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
};
|
|
1518
|
-
} & {
|
|
1519
|
-
|
|
1520
|
-
} | {
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
} & {
|
|
1524
|
-
|
|
1525
|
-
} | {
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
} & {
|
|
1529
|
-
|
|
1530
|
-
} | {
|
|
1531
|
-
|
|
1532
|
-
} & {
|
|
1533
|
-
|
|
1534
|
-
} | {
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
} & {
|
|
1538
|
-
|
|
1539
|
-
} | {
|
|
1540
|
-
|
|
1541
|
-
} & {
|
|
1542
|
-
|
|
1543
|
-
} | {
|
|
1544
|
-
|
|
1545
|
-
} & {
|
|
1546
|
-
|
|
1547
|
-
} | {
|
|
1548
|
-
|
|
1549
|
-
} & {
|
|
1550
|
-
|
|
1551
|
-
} | {
|
|
1552
|
-
|
|
1553
|
-
} & {
|
|
1554
|
-
|
|
1555
|
-
} | {
|
|
1556
|
-
|
|
1557
|
-
} & {
|
|
1558
|
-
|
|
1559
|
-
} | {
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
};
|
|
1565
|
-
} & {
|
|
1566
|
-
|
|
1567
|
-
} | {
|
|
1568
|
-
|
|
1569
|
-
} & {
|
|
1570
|
-
|
|
1571
|
-
} | {
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
} & {
|
|
1575
|
-
|
|
1576
|
-
} | {
|
|
1577
|
-
|
|
1578
|
-
} & {
|
|
1579
|
-
|
|
1580
|
-
} | {
|
|
1581
|
-
|
|
1582
|
-
} & {
|
|
1583
|
-
|
|
1584
|
-
} | {
|
|
1585
|
-
|
|
1586
|
-
} & {
|
|
1587
|
-
|
|
1588
|
-
};
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
} & {
|
|
1592
|
-
|
|
1593
|
-
} | {
|
|
1594
|
-
|
|
1595
|
-
} & {
|
|
1596
|
-
|
|
1597
|
-
} | {
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
} & {
|
|
1601
|
-
|
|
1602
|
-
} | {
|
|
1603
|
-
|
|
1604
|
-
} & {
|
|
1605
|
-
|
|
1606
|
-
} | {
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
};
|
|
1612
|
-
} & {
|
|
1613
|
-
|
|
1614
|
-
} | {
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
} & {
|
|
1618
|
-
|
|
1619
|
-
} | {
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
} & {
|
|
1623
|
-
|
|
1624
|
-
} | {
|
|
1625
|
-
|
|
1626
|
-
} & {
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1431
|
+
}) | ({
|
|
1432
|
+
name: "configure_content";
|
|
1433
|
+
} & {
|
|
1434
|
+
value?: _sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1435
|
+
}) | ({
|
|
1436
|
+
name: "configure_api_key";
|
|
1437
|
+
slug: "partoo";
|
|
1438
|
+
} & {
|
|
1439
|
+
value?: _value_string__;
|
|
1440
|
+
}) | ({
|
|
1441
|
+
name: "patch";
|
|
1442
|
+
} & {
|
|
1443
|
+
value?: _aggregationPipeline_AggregationStep_Array_refresh_WorkerRefresh_detectMissingFields_boolean_batchSize_number__;
|
|
1444
|
+
}) | ({
|
|
1445
|
+
name: "validate";
|
|
1446
|
+
} & {
|
|
1447
|
+
value?: __x_string__never__;
|
|
1448
|
+
}) | ({
|
|
1449
|
+
name: "configure_shopify_shop_name";
|
|
1450
|
+
configurationId: string;
|
|
1451
|
+
} & {
|
|
1452
|
+
value?: string;
|
|
1453
|
+
}) | ({
|
|
1454
|
+
name: "configure_twitter";
|
|
1455
|
+
} & {
|
|
1456
|
+
value?: _type_user_or_hashtag_value_string__;
|
|
1457
|
+
}) | ({
|
|
1458
|
+
name: "configure_product_datasource_source";
|
|
1459
|
+
} & {
|
|
1460
|
+
value?: _datasourceId_string__;
|
|
1461
|
+
}) | ({
|
|
1462
|
+
name: "configure_tracking_datasource_source";
|
|
1463
|
+
} & {
|
|
1464
|
+
value?: _datasourceId_string__;
|
|
1465
|
+
}) | ({
|
|
1466
|
+
name: "configure_best_product_query";
|
|
1467
|
+
} & {
|
|
1468
|
+
value?: _query_string__;
|
|
1469
|
+
}) | ({
|
|
1470
|
+
name: "configure_best_product_field";
|
|
1471
|
+
} & {
|
|
1472
|
+
value?: _field_string__;
|
|
1473
|
+
}) | ({
|
|
1474
|
+
name: "configure_name";
|
|
1475
|
+
} & {
|
|
1476
|
+
value?: string;
|
|
1477
|
+
}) | ({
|
|
1478
|
+
name: "configure_resource_group_ids";
|
|
1479
|
+
} & {
|
|
1480
|
+
value?: string[];
|
|
1481
|
+
}) | ({
|
|
1482
|
+
name: "configure_source";
|
|
1483
|
+
mode?: "url" | "file";
|
|
1484
|
+
} & {
|
|
1485
|
+
value?: _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_ProxyApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1486
|
+
}) | ({
|
|
1487
|
+
name: "configure_fieldsmap";
|
|
1488
|
+
} & {
|
|
1489
|
+
value?: FieldMap[];
|
|
1490
|
+
}) | ({
|
|
1491
|
+
name: "configure_field";
|
|
1492
|
+
field: {
|
|
1493
|
+
name: string;
|
|
1494
|
+
type: FieldMapType;
|
|
1495
|
+
};
|
|
1496
|
+
} & {
|
|
1497
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1498
|
+
}) | ({
|
|
1499
|
+
name: "create_oauth_client";
|
|
1500
|
+
configurationId: string;
|
|
1501
|
+
} & {
|
|
1502
|
+
value?: __x_string__never__;
|
|
1503
|
+
}) | ({
|
|
1504
|
+
name: "authorize_oauth_client";
|
|
1505
|
+
slug: string;
|
|
1506
|
+
} & {
|
|
1507
|
+
value?: __x_string__never__;
|
|
1508
|
+
}) | ({
|
|
1509
|
+
name: "configure_content";
|
|
1510
|
+
} & {
|
|
1511
|
+
value?: _sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1512
|
+
}) | ({
|
|
1513
|
+
name: "configure_api_key";
|
|
1514
|
+
slug: "partoo";
|
|
1515
|
+
} & {
|
|
1516
|
+
value?: _value_string__;
|
|
1517
|
+
}) | ({
|
|
1518
|
+
name: "patch";
|
|
1519
|
+
} & {
|
|
1520
|
+
value?: _refresh_ProxyRefresh__;
|
|
1521
|
+
}) | ({
|
|
1522
|
+
name: "validate";
|
|
1523
|
+
} & {
|
|
1524
|
+
value?: __x_string__never__;
|
|
1525
|
+
}) | ({
|
|
1526
|
+
name: "configure_name";
|
|
1527
|
+
} & {
|
|
1528
|
+
value?: string;
|
|
1529
|
+
}) | ({
|
|
1530
|
+
name: "configure_resource_group_ids";
|
|
1531
|
+
} & {
|
|
1532
|
+
value?: string[];
|
|
1533
|
+
}) | ({
|
|
1534
|
+
name: "configure_fieldsmap";
|
|
1535
|
+
} & {
|
|
1536
|
+
value?: FieldMap[];
|
|
1537
|
+
}) | ({
|
|
1538
|
+
name: "configure_field";
|
|
1539
|
+
field: {
|
|
1540
|
+
name: string;
|
|
1541
|
+
type: FieldMapType;
|
|
1542
|
+
};
|
|
1543
|
+
} & {
|
|
1544
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1545
|
+
}) | ({
|
|
1546
|
+
name: "validate";
|
|
1547
|
+
} & {
|
|
1548
|
+
value?: __x_string__never__;
|
|
1549
|
+
}) | ({
|
|
1550
|
+
name: "inject_shopify_analytics_script";
|
|
1551
|
+
configurationId: string;
|
|
1552
|
+
} & {
|
|
1553
|
+
value?: string;
|
|
1554
|
+
}) | ({
|
|
1555
|
+
name: "configure_shopify_analytics_script";
|
|
1556
|
+
} & {
|
|
1557
|
+
value?: __x_string__never__;
|
|
1558
|
+
}) | ({
|
|
1559
|
+
name: "configure_google_tag_manager";
|
|
1560
|
+
} & {
|
|
1561
|
+
value?: __x_string__never__;
|
|
1562
|
+
}) | ({
|
|
1563
|
+
name: "configure_reelevant_analytics_script";
|
|
1564
|
+
} & {
|
|
1565
|
+
value?: __x_string__never__;
|
|
1566
|
+
});
|
|
1567
|
+
next: (({
|
|
1568
|
+
name: "configure_name";
|
|
1569
|
+
} & {
|
|
1570
|
+
value?: string;
|
|
1571
|
+
}) | ({
|
|
1572
|
+
name: "configure_resource_group_ids";
|
|
1573
|
+
} & {
|
|
1574
|
+
value?: string[];
|
|
1575
|
+
}) | ({
|
|
1576
|
+
name: "configure_source";
|
|
1577
|
+
mode?: "url" | "file";
|
|
1578
|
+
} & {
|
|
1579
|
+
value?: _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_WorkerApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__ | _file_string_ignoreMissingLiveFields_string_textEncoding_string_format_Format__;
|
|
1580
|
+
}) | ({
|
|
1581
|
+
name: "configure_fieldsmap";
|
|
1582
|
+
} & {
|
|
1583
|
+
value?: FieldMap[];
|
|
1584
|
+
}) | ({
|
|
1585
|
+
name: "configure_field";
|
|
1586
|
+
field: {
|
|
1587
|
+
name: string;
|
|
1588
|
+
type: FieldMapType;
|
|
1589
|
+
};
|
|
1590
|
+
} & {
|
|
1591
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1592
|
+
}) | ({
|
|
1593
|
+
name: "create_oauth_client";
|
|
1594
|
+
configurationId: string;
|
|
1595
|
+
} & {
|
|
1596
|
+
value?: __x_string__never__;
|
|
1597
|
+
}) | ({
|
|
1598
|
+
name: "authorize_oauth_client";
|
|
1599
|
+
slug: string;
|
|
1600
|
+
} & {
|
|
1601
|
+
value?: __x_string__never__;
|
|
1602
|
+
}) | ({
|
|
1603
|
+
name: "configure_thresholds";
|
|
1604
|
+
} & {
|
|
1605
|
+
value?: ({
|
|
1606
|
+
type: "too_many_invalid_entries";
|
|
1607
|
+
value: number;
|
|
1608
|
+
trigger: {
|
|
1609
|
+
type: "error";
|
|
1610
|
+
value: "too_many_invalid_entries";
|
|
1633
1611
|
};
|
|
1634
1612
|
} | {
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1613
|
+
type: "entries_drop_rate_too_high";
|
|
1614
|
+
value: number;
|
|
1615
|
+
trigger: {
|
|
1616
|
+
type: "warning";
|
|
1617
|
+
value: "entries_drop_rate_too_high";
|
|
1640
1618
|
} | {
|
|
1641
|
-
|
|
1642
|
-
|
|
1619
|
+
type: "error";
|
|
1620
|
+
value: "entries_drop_rate_too_high";
|
|
1643
1621
|
};
|
|
1644
1622
|
})[];
|
|
1645
|
-
} | {
|
|
1646
|
-
|
|
1647
|
-
} & {
|
|
1648
|
-
|
|
1649
|
-
} | {
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
} & {
|
|
1653
|
-
|
|
1654
|
-
} | {
|
|
1655
|
-
|
|
1656
|
-
} & {
|
|
1657
|
-
|
|
1658
|
-
} | {
|
|
1659
|
-
|
|
1660
|
-
} & {
|
|
1661
|
-
|
|
1662
|
-
} | {
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
} & {
|
|
1666
|
-
|
|
1667
|
-
} | {
|
|
1668
|
-
|
|
1669
|
-
} & {
|
|
1670
|
-
|
|
1671
|
-
} | {
|
|
1672
|
-
|
|
1673
|
-
} & {
|
|
1674
|
-
|
|
1675
|
-
} | {
|
|
1676
|
-
|
|
1677
|
-
} & {
|
|
1678
|
-
|
|
1679
|
-
} | {
|
|
1680
|
-
|
|
1681
|
-
} & {
|
|
1682
|
-
|
|
1683
|
-
} | {
|
|
1684
|
-
|
|
1685
|
-
} & {
|
|
1686
|
-
|
|
1687
|
-
} | {
|
|
1688
|
-
|
|
1689
|
-
} & {
|
|
1690
|
-
|
|
1691
|
-
} | {
|
|
1692
|
-
|
|
1693
|
-
} & {
|
|
1694
|
-
|
|
1695
|
-
} | {
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
} & {
|
|
1699
|
-
|
|
1700
|
-
} | {
|
|
1701
|
-
|
|
1702
|
-
} & {
|
|
1703
|
-
|
|
1704
|
-
} | {
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
};
|
|
1710
|
-
} & {
|
|
1711
|
-
|
|
1712
|
-
} | {
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
} & {
|
|
1716
|
-
|
|
1717
|
-
} | {
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
} & {
|
|
1721
|
-
|
|
1722
|
-
} | {
|
|
1723
|
-
|
|
1724
|
-
} & {
|
|
1725
|
-
|
|
1726
|
-
} | {
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
} & {
|
|
1730
|
-
|
|
1731
|
-
} | {
|
|
1732
|
-
|
|
1733
|
-
} & {
|
|
1734
|
-
|
|
1735
|
-
} | {
|
|
1736
|
-
|
|
1737
|
-
} & {
|
|
1738
|
-
|
|
1739
|
-
} | {
|
|
1740
|
-
|
|
1741
|
-
} & {
|
|
1742
|
-
|
|
1743
|
-
} | {
|
|
1744
|
-
|
|
1745
|
-
} & {
|
|
1746
|
-
|
|
1747
|
-
} | {
|
|
1748
|
-
|
|
1749
|
-
} & {
|
|
1750
|
-
|
|
1751
|
-
} | {
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
};
|
|
1757
|
-
} & {
|
|
1758
|
-
|
|
1759
|
-
} | {
|
|
1760
|
-
|
|
1761
|
-
} & {
|
|
1762
|
-
|
|
1763
|
-
} | {
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
} & {
|
|
1767
|
-
|
|
1768
|
-
} | {
|
|
1769
|
-
|
|
1770
|
-
} & {
|
|
1771
|
-
|
|
1772
|
-
} | {
|
|
1773
|
-
|
|
1774
|
-
} & {
|
|
1775
|
-
|
|
1776
|
-
} | {
|
|
1777
|
-
|
|
1778
|
-
} & {
|
|
1779
|
-
|
|
1780
|
-
})[];
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
} & {
|
|
1784
|
-
|
|
1785
|
-
} | {
|
|
1786
|
-
|
|
1787
|
-
} & {
|
|
1788
|
-
|
|
1789
|
-
} | {
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
} & {
|
|
1793
|
-
|
|
1794
|
-
} | {
|
|
1795
|
-
|
|
1796
|
-
} & {
|
|
1797
|
-
|
|
1798
|
-
} | {
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
};
|
|
1804
|
-
} & {
|
|
1805
|
-
|
|
1806
|
-
} | {
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
} & {
|
|
1810
|
-
|
|
1811
|
-
} | {
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
} & {
|
|
1815
|
-
|
|
1816
|
-
} | {
|
|
1817
|
-
|
|
1818
|
-
} & {
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1623
|
+
}) | ({
|
|
1624
|
+
name: "configure_content";
|
|
1625
|
+
} & {
|
|
1626
|
+
value?: _sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1627
|
+
}) | ({
|
|
1628
|
+
name: "configure_api_key";
|
|
1629
|
+
slug: "partoo";
|
|
1630
|
+
} & {
|
|
1631
|
+
value?: _value_string__;
|
|
1632
|
+
}) | ({
|
|
1633
|
+
name: "patch";
|
|
1634
|
+
} & {
|
|
1635
|
+
value?: _aggregationPipeline_AggregationStep_Array_refresh_WorkerRefresh_detectMissingFields_boolean_batchSize_number__;
|
|
1636
|
+
}) | ({
|
|
1637
|
+
name: "validate";
|
|
1638
|
+
} & {
|
|
1639
|
+
value?: __x_string__never__;
|
|
1640
|
+
}) | ({
|
|
1641
|
+
name: "configure_shopify_shop_name";
|
|
1642
|
+
configurationId: string;
|
|
1643
|
+
} & {
|
|
1644
|
+
value?: string;
|
|
1645
|
+
}) | ({
|
|
1646
|
+
name: "configure_twitter";
|
|
1647
|
+
} & {
|
|
1648
|
+
value?: _type_user_or_hashtag_value_string__;
|
|
1649
|
+
}) | ({
|
|
1650
|
+
name: "configure_product_datasource_source";
|
|
1651
|
+
} & {
|
|
1652
|
+
value?: _datasourceId_string__;
|
|
1653
|
+
}) | ({
|
|
1654
|
+
name: "configure_tracking_datasource_source";
|
|
1655
|
+
} & {
|
|
1656
|
+
value?: _datasourceId_string__;
|
|
1657
|
+
}) | ({
|
|
1658
|
+
name: "configure_best_product_query";
|
|
1659
|
+
} & {
|
|
1660
|
+
value?: _query_string__;
|
|
1661
|
+
}) | ({
|
|
1662
|
+
name: "configure_best_product_field";
|
|
1663
|
+
} & {
|
|
1664
|
+
value?: _field_string__;
|
|
1665
|
+
}) | ({
|
|
1666
|
+
name: "configure_name";
|
|
1667
|
+
} & {
|
|
1668
|
+
value?: string;
|
|
1669
|
+
}) | ({
|
|
1670
|
+
name: "configure_resource_group_ids";
|
|
1671
|
+
} & {
|
|
1672
|
+
value?: string[];
|
|
1673
|
+
}) | ({
|
|
1674
|
+
name: "configure_source";
|
|
1675
|
+
mode?: "url" | "file";
|
|
1676
|
+
} & {
|
|
1677
|
+
value?: _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_ProxyApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1678
|
+
}) | ({
|
|
1679
|
+
name: "configure_fieldsmap";
|
|
1680
|
+
} & {
|
|
1681
|
+
value?: FieldMap[];
|
|
1682
|
+
}) | ({
|
|
1683
|
+
name: "configure_field";
|
|
1684
|
+
field: {
|
|
1685
|
+
name: string;
|
|
1686
|
+
type: FieldMapType;
|
|
1687
|
+
};
|
|
1688
|
+
} & {
|
|
1689
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1690
|
+
}) | ({
|
|
1691
|
+
name: "create_oauth_client";
|
|
1692
|
+
configurationId: string;
|
|
1693
|
+
} & {
|
|
1694
|
+
value?: __x_string__never__;
|
|
1695
|
+
}) | ({
|
|
1696
|
+
name: "authorize_oauth_client";
|
|
1697
|
+
slug: string;
|
|
1698
|
+
} & {
|
|
1699
|
+
value?: __x_string__never__;
|
|
1700
|
+
}) | ({
|
|
1701
|
+
name: "configure_content";
|
|
1702
|
+
} & {
|
|
1703
|
+
value?: _sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1704
|
+
}) | ({
|
|
1705
|
+
name: "configure_api_key";
|
|
1706
|
+
slug: "partoo";
|
|
1707
|
+
} & {
|
|
1708
|
+
value?: _value_string__;
|
|
1709
|
+
}) | ({
|
|
1710
|
+
name: "patch";
|
|
1711
|
+
} & {
|
|
1712
|
+
value?: _refresh_ProxyRefresh__;
|
|
1713
|
+
}) | ({
|
|
1714
|
+
name: "validate";
|
|
1715
|
+
} & {
|
|
1716
|
+
value?: __x_string__never__;
|
|
1717
|
+
}) | ({
|
|
1718
|
+
name: "configure_name";
|
|
1719
|
+
} & {
|
|
1720
|
+
value?: string;
|
|
1721
|
+
}) | ({
|
|
1722
|
+
name: "configure_resource_group_ids";
|
|
1723
|
+
} & {
|
|
1724
|
+
value?: string[];
|
|
1725
|
+
}) | ({
|
|
1726
|
+
name: "configure_fieldsmap";
|
|
1727
|
+
} & {
|
|
1728
|
+
value?: FieldMap[];
|
|
1729
|
+
}) | ({
|
|
1730
|
+
name: "configure_field";
|
|
1731
|
+
field: {
|
|
1732
|
+
name: string;
|
|
1733
|
+
type: FieldMapType;
|
|
1734
|
+
};
|
|
1735
|
+
} & {
|
|
1736
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1737
|
+
}) | ({
|
|
1738
|
+
name: "validate";
|
|
1739
|
+
} & {
|
|
1740
|
+
value?: __x_string__never__;
|
|
1741
|
+
}) | ({
|
|
1742
|
+
name: "inject_shopify_analytics_script";
|
|
1743
|
+
configurationId: string;
|
|
1744
|
+
} & {
|
|
1745
|
+
value?: string;
|
|
1746
|
+
}) | ({
|
|
1747
|
+
name: "configure_shopify_analytics_script";
|
|
1748
|
+
} & {
|
|
1749
|
+
value?: __x_string__never__;
|
|
1750
|
+
}) | ({
|
|
1751
|
+
name: "configure_google_tag_manager";
|
|
1752
|
+
} & {
|
|
1753
|
+
value?: __x_string__never__;
|
|
1754
|
+
}) | ({
|
|
1755
|
+
name: "configure_reelevant_analytics_script";
|
|
1756
|
+
} & {
|
|
1757
|
+
value?: __x_string__never__;
|
|
1758
|
+
}))[];
|
|
1759
|
+
previous: (({
|
|
1760
|
+
name: "configure_name";
|
|
1761
|
+
} & {
|
|
1762
|
+
value?: string;
|
|
1763
|
+
}) | ({
|
|
1764
|
+
name: "configure_resource_group_ids";
|
|
1765
|
+
} & {
|
|
1766
|
+
value?: string[];
|
|
1767
|
+
}) | ({
|
|
1768
|
+
name: "configure_source";
|
|
1769
|
+
mode?: "url" | "file";
|
|
1770
|
+
} & {
|
|
1771
|
+
value?: _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_WorkerApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__ | _file_string_ignoreMissingLiveFields_string_textEncoding_string_format_Format__;
|
|
1772
|
+
}) | ({
|
|
1773
|
+
name: "configure_fieldsmap";
|
|
1774
|
+
} & {
|
|
1775
|
+
value?: FieldMap[];
|
|
1776
|
+
}) | ({
|
|
1777
|
+
name: "configure_field";
|
|
1778
|
+
field: {
|
|
1779
|
+
name: string;
|
|
1780
|
+
type: FieldMapType;
|
|
1781
|
+
};
|
|
1782
|
+
} & {
|
|
1783
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1784
|
+
}) | ({
|
|
1785
|
+
name: "create_oauth_client";
|
|
1786
|
+
configurationId: string;
|
|
1787
|
+
} & {
|
|
1788
|
+
value?: __x_string__never__;
|
|
1789
|
+
}) | ({
|
|
1790
|
+
name: "authorize_oauth_client";
|
|
1791
|
+
slug: string;
|
|
1792
|
+
} & {
|
|
1793
|
+
value?: __x_string__never__;
|
|
1794
|
+
}) | ({
|
|
1795
|
+
name: "configure_thresholds";
|
|
1796
|
+
} & {
|
|
1797
|
+
value?: ({
|
|
1798
|
+
type: "too_many_invalid_entries";
|
|
1799
|
+
value: number;
|
|
1800
|
+
trigger: {
|
|
1801
|
+
type: "error";
|
|
1802
|
+
value: "too_many_invalid_entries";
|
|
1825
1803
|
};
|
|
1826
1804
|
} | {
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1805
|
+
type: "entries_drop_rate_too_high";
|
|
1806
|
+
value: number;
|
|
1807
|
+
trigger: {
|
|
1808
|
+
type: "warning";
|
|
1809
|
+
value: "entries_drop_rate_too_high";
|
|
1832
1810
|
} | {
|
|
1833
|
-
|
|
1834
|
-
|
|
1811
|
+
type: "error";
|
|
1812
|
+
value: "entries_drop_rate_too_high";
|
|
1835
1813
|
};
|
|
1836
1814
|
})[];
|
|
1837
|
-
} | {
|
|
1838
|
-
|
|
1839
|
-
} & {
|
|
1840
|
-
|
|
1841
|
-
} | {
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
} & {
|
|
1845
|
-
|
|
1846
|
-
} | {
|
|
1847
|
-
|
|
1848
|
-
} & {
|
|
1849
|
-
|
|
1850
|
-
} | {
|
|
1851
|
-
|
|
1852
|
-
} & {
|
|
1853
|
-
|
|
1854
|
-
} | {
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
} & {
|
|
1858
|
-
|
|
1859
|
-
} | {
|
|
1860
|
-
|
|
1861
|
-
} & {
|
|
1862
|
-
|
|
1863
|
-
} | {
|
|
1864
|
-
|
|
1865
|
-
} & {
|
|
1866
|
-
|
|
1867
|
-
} | {
|
|
1868
|
-
|
|
1869
|
-
} & {
|
|
1870
|
-
|
|
1871
|
-
} | {
|
|
1872
|
-
|
|
1873
|
-
} & {
|
|
1874
|
-
|
|
1875
|
-
} | {
|
|
1876
|
-
|
|
1877
|
-
} & {
|
|
1878
|
-
|
|
1879
|
-
} | {
|
|
1880
|
-
|
|
1881
|
-
} & {
|
|
1882
|
-
|
|
1883
|
-
} | {
|
|
1884
|
-
|
|
1885
|
-
} & {
|
|
1886
|
-
|
|
1887
|
-
} | {
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
} & {
|
|
1891
|
-
|
|
1892
|
-
} | {
|
|
1893
|
-
|
|
1894
|
-
} & {
|
|
1895
|
-
|
|
1896
|
-
} | {
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
};
|
|
1902
|
-
} & {
|
|
1903
|
-
|
|
1904
|
-
} | {
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
} & {
|
|
1908
|
-
|
|
1909
|
-
} | {
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
} & {
|
|
1913
|
-
|
|
1914
|
-
} | {
|
|
1915
|
-
|
|
1916
|
-
} & {
|
|
1917
|
-
|
|
1918
|
-
} | {
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
} & {
|
|
1922
|
-
|
|
1923
|
-
} | {
|
|
1924
|
-
|
|
1925
|
-
} & {
|
|
1926
|
-
|
|
1927
|
-
} | {
|
|
1928
|
-
|
|
1929
|
-
} & {
|
|
1930
|
-
|
|
1931
|
-
} | {
|
|
1932
|
-
|
|
1933
|
-
} & {
|
|
1934
|
-
|
|
1935
|
-
} | {
|
|
1936
|
-
|
|
1937
|
-
} & {
|
|
1938
|
-
|
|
1939
|
-
} | {
|
|
1940
|
-
|
|
1941
|
-
} & {
|
|
1942
|
-
|
|
1943
|
-
} | {
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
};
|
|
1949
|
-
} & {
|
|
1950
|
-
|
|
1951
|
-
} | {
|
|
1952
|
-
|
|
1953
|
-
} & {
|
|
1954
|
-
|
|
1955
|
-
} | {
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
} & {
|
|
1959
|
-
|
|
1960
|
-
} | {
|
|
1961
|
-
|
|
1962
|
-
} & {
|
|
1963
|
-
|
|
1964
|
-
} | {
|
|
1965
|
-
|
|
1966
|
-
} & {
|
|
1967
|
-
|
|
1968
|
-
} | {
|
|
1969
|
-
|
|
1970
|
-
} & {
|
|
1971
|
-
|
|
1972
|
-
})[];
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
} & {
|
|
1976
|
-
|
|
1977
|
-
} | {
|
|
1978
|
-
|
|
1979
|
-
} & {
|
|
1980
|
-
|
|
1981
|
-
} | {
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
} & {
|
|
1985
|
-
|
|
1986
|
-
} | {
|
|
1987
|
-
|
|
1988
|
-
} & {
|
|
1989
|
-
|
|
1990
|
-
} | {
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
};
|
|
1996
|
-
} & {
|
|
1997
|
-
|
|
1998
|
-
} | {
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
} & {
|
|
2002
|
-
|
|
2003
|
-
} | {
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
} & {
|
|
2007
|
-
|
|
2008
|
-
} | {
|
|
2009
|
-
|
|
2010
|
-
} & {
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
1815
|
+
}) | ({
|
|
1816
|
+
name: "configure_content";
|
|
1817
|
+
} & {
|
|
1818
|
+
value?: _sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1819
|
+
}) | ({
|
|
1820
|
+
name: "configure_api_key";
|
|
1821
|
+
slug: "partoo";
|
|
1822
|
+
} & {
|
|
1823
|
+
value?: _value_string__;
|
|
1824
|
+
}) | ({
|
|
1825
|
+
name: "patch";
|
|
1826
|
+
} & {
|
|
1827
|
+
value?: _aggregationPipeline_AggregationStep_Array_refresh_WorkerRefresh_detectMissingFields_boolean_batchSize_number__;
|
|
1828
|
+
}) | ({
|
|
1829
|
+
name: "validate";
|
|
1830
|
+
} & {
|
|
1831
|
+
value?: __x_string__never__;
|
|
1832
|
+
}) | ({
|
|
1833
|
+
name: "configure_shopify_shop_name";
|
|
1834
|
+
configurationId: string;
|
|
1835
|
+
} & {
|
|
1836
|
+
value?: string;
|
|
1837
|
+
}) | ({
|
|
1838
|
+
name: "configure_twitter";
|
|
1839
|
+
} & {
|
|
1840
|
+
value?: _type_user_or_hashtag_value_string__;
|
|
1841
|
+
}) | ({
|
|
1842
|
+
name: "configure_product_datasource_source";
|
|
1843
|
+
} & {
|
|
1844
|
+
value?: _datasourceId_string__;
|
|
1845
|
+
}) | ({
|
|
1846
|
+
name: "configure_tracking_datasource_source";
|
|
1847
|
+
} & {
|
|
1848
|
+
value?: _datasourceId_string__;
|
|
1849
|
+
}) | ({
|
|
1850
|
+
name: "configure_best_product_query";
|
|
1851
|
+
} & {
|
|
1852
|
+
value?: _query_string__;
|
|
1853
|
+
}) | ({
|
|
1854
|
+
name: "configure_best_product_field";
|
|
1855
|
+
} & {
|
|
1856
|
+
value?: _field_string__;
|
|
1857
|
+
}) | ({
|
|
1858
|
+
name: "configure_name";
|
|
1859
|
+
} & {
|
|
1860
|
+
value?: string;
|
|
1861
|
+
}) | ({
|
|
1862
|
+
name: "configure_resource_group_ids";
|
|
1863
|
+
} & {
|
|
1864
|
+
value?: string[];
|
|
1865
|
+
}) | ({
|
|
1866
|
+
name: "configure_source";
|
|
1867
|
+
mode?: "url" | "file";
|
|
1868
|
+
} & {
|
|
1869
|
+
value?: _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_ProxyApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1870
|
+
}) | ({
|
|
1871
|
+
name: "configure_fieldsmap";
|
|
1872
|
+
} & {
|
|
1873
|
+
value?: FieldMap[];
|
|
1874
|
+
}) | ({
|
|
1875
|
+
name: "configure_field";
|
|
1876
|
+
field: {
|
|
1877
|
+
name: string;
|
|
1878
|
+
type: FieldMapType;
|
|
1879
|
+
};
|
|
1880
|
+
} & {
|
|
1881
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1882
|
+
}) | ({
|
|
1883
|
+
name: "create_oauth_client";
|
|
1884
|
+
configurationId: string;
|
|
1885
|
+
} & {
|
|
1886
|
+
value?: __x_string__never__;
|
|
1887
|
+
}) | ({
|
|
1888
|
+
name: "authorize_oauth_client";
|
|
1889
|
+
slug: string;
|
|
1890
|
+
} & {
|
|
1891
|
+
value?: __x_string__never__;
|
|
1892
|
+
}) | ({
|
|
1893
|
+
name: "configure_content";
|
|
1894
|
+
} & {
|
|
1895
|
+
value?: _sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
1896
|
+
}) | ({
|
|
1897
|
+
name: "configure_api_key";
|
|
1898
|
+
slug: "partoo";
|
|
1899
|
+
} & {
|
|
1900
|
+
value?: _value_string__;
|
|
1901
|
+
}) | ({
|
|
1902
|
+
name: "patch";
|
|
1903
|
+
} & {
|
|
1904
|
+
value?: _refresh_ProxyRefresh__;
|
|
1905
|
+
}) | ({
|
|
1906
|
+
name: "validate";
|
|
1907
|
+
} & {
|
|
1908
|
+
value?: __x_string__never__;
|
|
1909
|
+
}) | ({
|
|
1910
|
+
name: "configure_name";
|
|
1911
|
+
} & {
|
|
1912
|
+
value?: string;
|
|
1913
|
+
}) | ({
|
|
1914
|
+
name: "configure_resource_group_ids";
|
|
1915
|
+
} & {
|
|
1916
|
+
value?: string[];
|
|
1917
|
+
}) | ({
|
|
1918
|
+
name: "configure_fieldsmap";
|
|
1919
|
+
} & {
|
|
1920
|
+
value?: FieldMap[];
|
|
1921
|
+
}) | ({
|
|
1922
|
+
name: "configure_field";
|
|
1923
|
+
field: {
|
|
1924
|
+
name: string;
|
|
1925
|
+
type: FieldMapType;
|
|
1926
|
+
};
|
|
1927
|
+
} & {
|
|
1928
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1929
|
+
}) | ({
|
|
1930
|
+
name: "validate";
|
|
1931
|
+
} & {
|
|
1932
|
+
value?: __x_string__never__;
|
|
1933
|
+
}) | ({
|
|
1934
|
+
name: "inject_shopify_analytics_script";
|
|
1935
|
+
configurationId: string;
|
|
1936
|
+
} & {
|
|
1937
|
+
value?: string;
|
|
1938
|
+
}) | ({
|
|
1939
|
+
name: "configure_shopify_analytics_script";
|
|
1940
|
+
} & {
|
|
1941
|
+
value?: __x_string__never__;
|
|
1942
|
+
}) | ({
|
|
1943
|
+
name: "configure_google_tag_manager";
|
|
1944
|
+
} & {
|
|
1945
|
+
value?: __x_string__never__;
|
|
1946
|
+
}) | ({
|
|
1947
|
+
name: "configure_reelevant_analytics_script";
|
|
1948
|
+
} & {
|
|
1949
|
+
value?: __x_string__never__;
|
|
1950
|
+
}))[];
|
|
1951
|
+
available: (({
|
|
1952
|
+
name: "configure_name";
|
|
1953
|
+
} & {
|
|
1954
|
+
value?: string;
|
|
1955
|
+
}) | ({
|
|
1956
|
+
name: "configure_resource_group_ids";
|
|
1957
|
+
} & {
|
|
1958
|
+
value?: string[];
|
|
1959
|
+
}) | ({
|
|
1960
|
+
name: "configure_source";
|
|
1961
|
+
mode?: "url" | "file";
|
|
1962
|
+
} & {
|
|
1963
|
+
value?: _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_WorkerApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__ | _file_string_ignoreMissingLiveFields_string_textEncoding_string_format_Format__;
|
|
1964
|
+
}) | ({
|
|
1965
|
+
name: "configure_fieldsmap";
|
|
1966
|
+
} & {
|
|
1967
|
+
value?: FieldMap[];
|
|
1968
|
+
}) | ({
|
|
1969
|
+
name: "configure_field";
|
|
1970
|
+
field: {
|
|
1971
|
+
name: string;
|
|
1972
|
+
type: FieldMapType;
|
|
1973
|
+
};
|
|
1974
|
+
} & {
|
|
1975
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
1976
|
+
}) | ({
|
|
1977
|
+
name: "create_oauth_client";
|
|
1978
|
+
configurationId: string;
|
|
1979
|
+
} & {
|
|
1980
|
+
value?: __x_string__never__;
|
|
1981
|
+
}) | ({
|
|
1982
|
+
name: "authorize_oauth_client";
|
|
1983
|
+
slug: string;
|
|
1984
|
+
} & {
|
|
1985
|
+
value?: __x_string__never__;
|
|
1986
|
+
}) | ({
|
|
1987
|
+
name: "configure_thresholds";
|
|
1988
|
+
} & {
|
|
1989
|
+
value?: ({
|
|
1990
|
+
type: "too_many_invalid_entries";
|
|
1991
|
+
value: number;
|
|
1992
|
+
trigger: {
|
|
1993
|
+
type: "error";
|
|
1994
|
+
value: "too_many_invalid_entries";
|
|
2017
1995
|
};
|
|
2018
1996
|
} | {
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
1997
|
+
type: "entries_drop_rate_too_high";
|
|
1998
|
+
value: number;
|
|
1999
|
+
trigger: {
|
|
2000
|
+
type: "warning";
|
|
2001
|
+
value: "entries_drop_rate_too_high";
|
|
2024
2002
|
} | {
|
|
2025
|
-
|
|
2026
|
-
|
|
2003
|
+
type: "error";
|
|
2004
|
+
value: "entries_drop_rate_too_high";
|
|
2027
2005
|
};
|
|
2028
2006
|
})[];
|
|
2029
|
-
} | {
|
|
2030
|
-
|
|
2031
|
-
} & {
|
|
2032
|
-
|
|
2033
|
-
} | {
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
} & {
|
|
2037
|
-
|
|
2038
|
-
} | {
|
|
2039
|
-
|
|
2040
|
-
} & {
|
|
2041
|
-
|
|
2042
|
-
} | {
|
|
2043
|
-
|
|
2044
|
-
} & {
|
|
2045
|
-
|
|
2046
|
-
} | {
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
} & {
|
|
2050
|
-
|
|
2051
|
-
} | {
|
|
2052
|
-
|
|
2053
|
-
} & {
|
|
2054
|
-
|
|
2055
|
-
} | {
|
|
2056
|
-
|
|
2057
|
-
} & {
|
|
2058
|
-
|
|
2059
|
-
} | {
|
|
2060
|
-
|
|
2061
|
-
} & {
|
|
2062
|
-
|
|
2063
|
-
} | {
|
|
2064
|
-
|
|
2065
|
-
} & {
|
|
2066
|
-
|
|
2067
|
-
} | {
|
|
2068
|
-
|
|
2069
|
-
} & {
|
|
2070
|
-
|
|
2071
|
-
} | {
|
|
2072
|
-
|
|
2073
|
-
} & {
|
|
2074
|
-
|
|
2075
|
-
} | {
|
|
2076
|
-
|
|
2077
|
-
} & {
|
|
2078
|
-
|
|
2079
|
-
} | {
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
} & {
|
|
2083
|
-
|
|
2084
|
-
} | {
|
|
2085
|
-
|
|
2086
|
-
} & {
|
|
2087
|
-
|
|
2088
|
-
} | {
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
};
|
|
2094
|
-
} & {
|
|
2095
|
-
|
|
2096
|
-
} | {
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
} & {
|
|
2100
|
-
|
|
2101
|
-
} | {
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
} & {
|
|
2105
|
-
|
|
2106
|
-
} | {
|
|
2107
|
-
|
|
2108
|
-
} & {
|
|
2109
|
-
|
|
2110
|
-
} | {
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
} & {
|
|
2114
|
-
|
|
2115
|
-
} | {
|
|
2116
|
-
|
|
2117
|
-
} & {
|
|
2118
|
-
|
|
2119
|
-
} | {
|
|
2120
|
-
|
|
2121
|
-
} & {
|
|
2122
|
-
|
|
2123
|
-
} | {
|
|
2124
|
-
|
|
2125
|
-
} & {
|
|
2126
|
-
|
|
2127
|
-
} | {
|
|
2128
|
-
|
|
2129
|
-
} & {
|
|
2130
|
-
|
|
2131
|
-
} | {
|
|
2132
|
-
|
|
2133
|
-
} & {
|
|
2134
|
-
|
|
2135
|
-
} | {
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2007
|
+
}) | ({
|
|
2008
|
+
name: "configure_content";
|
|
2009
|
+
} & {
|
|
2010
|
+
value?: _sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
2011
|
+
}) | ({
|
|
2012
|
+
name: "configure_api_key";
|
|
2013
|
+
slug: "partoo";
|
|
2014
|
+
} & {
|
|
2015
|
+
value?: _value_string__;
|
|
2016
|
+
}) | ({
|
|
2017
|
+
name: "patch";
|
|
2018
|
+
} & {
|
|
2019
|
+
value?: _aggregationPipeline_AggregationStep_Array_refresh_WorkerRefresh_detectMissingFields_boolean_batchSize_number__;
|
|
2020
|
+
}) | ({
|
|
2021
|
+
name: "validate";
|
|
2022
|
+
} & {
|
|
2023
|
+
value?: __x_string__never__;
|
|
2024
|
+
}) | ({
|
|
2025
|
+
name: "configure_shopify_shop_name";
|
|
2026
|
+
configurationId: string;
|
|
2027
|
+
} & {
|
|
2028
|
+
value?: string;
|
|
2029
|
+
}) | ({
|
|
2030
|
+
name: "configure_twitter";
|
|
2031
|
+
} & {
|
|
2032
|
+
value?: _type_user_or_hashtag_value_string__;
|
|
2033
|
+
}) | ({
|
|
2034
|
+
name: "configure_product_datasource_source";
|
|
2035
|
+
} & {
|
|
2036
|
+
value?: _datasourceId_string__;
|
|
2037
|
+
}) | ({
|
|
2038
|
+
name: "configure_tracking_datasource_source";
|
|
2039
|
+
} & {
|
|
2040
|
+
value?: _datasourceId_string__;
|
|
2041
|
+
}) | ({
|
|
2042
|
+
name: "configure_best_product_query";
|
|
2043
|
+
} & {
|
|
2044
|
+
value?: _query_string__;
|
|
2045
|
+
}) | ({
|
|
2046
|
+
name: "configure_best_product_field";
|
|
2047
|
+
} & {
|
|
2048
|
+
value?: _field_string__;
|
|
2049
|
+
}) | ({
|
|
2050
|
+
name: "configure_name";
|
|
2051
|
+
} & {
|
|
2052
|
+
value?: string;
|
|
2053
|
+
}) | ({
|
|
2054
|
+
name: "configure_resource_group_ids";
|
|
2055
|
+
} & {
|
|
2056
|
+
value?: string[];
|
|
2057
|
+
}) | ({
|
|
2058
|
+
name: "configure_source";
|
|
2059
|
+
mode?: "url" | "file";
|
|
2060
|
+
} & {
|
|
2061
|
+
value?: _urls_string_Array_ignoreMissingLiveFields_true_apiOptions_ProxyApiOptions_sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
2062
|
+
}) | ({
|
|
2063
|
+
name: "configure_fieldsmap";
|
|
2064
|
+
} & {
|
|
2065
|
+
value?: FieldMap[];
|
|
2066
|
+
}) | ({
|
|
2067
|
+
name: "configure_field";
|
|
2068
|
+
field: {
|
|
2069
|
+
name: string;
|
|
2070
|
+
type: FieldMapType;
|
|
2071
|
+
};
|
|
2072
|
+
} & {
|
|
2073
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
2074
|
+
}) | ({
|
|
2075
|
+
name: "create_oauth_client";
|
|
2076
|
+
configurationId: string;
|
|
2077
|
+
} & {
|
|
2078
|
+
value?: __x_string__never__;
|
|
2079
|
+
}) | ({
|
|
2080
|
+
name: "authorize_oauth_client";
|
|
2081
|
+
slug: string;
|
|
2082
|
+
} & {
|
|
2083
|
+
value?: __x_string__never__;
|
|
2084
|
+
}) | ({
|
|
2085
|
+
name: "configure_content";
|
|
2086
|
+
} & {
|
|
2087
|
+
value?: _sample___key_string__unknown___textEncoding_string_format_Format__;
|
|
2088
|
+
}) | ({
|
|
2089
|
+
name: "configure_api_key";
|
|
2090
|
+
slug: "partoo";
|
|
2091
|
+
} & {
|
|
2092
|
+
value?: _value_string__;
|
|
2093
|
+
}) | ({
|
|
2094
|
+
name: "patch";
|
|
2095
|
+
} & {
|
|
2096
|
+
value?: _refresh_ProxyRefresh__;
|
|
2097
|
+
}) | ({
|
|
2098
|
+
name: "validate";
|
|
2099
|
+
} & {
|
|
2100
|
+
value?: __x_string__never__;
|
|
2101
|
+
}) | ({
|
|
2102
|
+
name: "configure_name";
|
|
2103
|
+
} & {
|
|
2104
|
+
value?: string;
|
|
2105
|
+
}) | ({
|
|
2106
|
+
name: "configure_resource_group_ids";
|
|
2107
|
+
} & {
|
|
2108
|
+
value?: string[];
|
|
2109
|
+
}) | ({
|
|
2110
|
+
name: "configure_fieldsmap";
|
|
2111
|
+
} & {
|
|
2112
|
+
value?: FieldMap[];
|
|
2113
|
+
}) | ({
|
|
2114
|
+
name: "configure_field";
|
|
2115
|
+
field: {
|
|
2116
|
+
name: string;
|
|
2117
|
+
type: FieldMapType;
|
|
2140
2118
|
};
|
|
2141
|
-
} & {
|
|
2142
|
-
|
|
2143
|
-
} | {
|
|
2144
|
-
|
|
2145
|
-
} & {
|
|
2146
|
-
|
|
2147
|
-
} | {
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
} & {
|
|
2151
|
-
|
|
2152
|
-
} | {
|
|
2153
|
-
|
|
2154
|
-
} & {
|
|
2155
|
-
|
|
2156
|
-
} | {
|
|
2157
|
-
|
|
2158
|
-
} & {
|
|
2159
|
-
|
|
2160
|
-
} | {
|
|
2161
|
-
|
|
2162
|
-
} & {
|
|
2163
|
-
|
|
2164
|
-
})[];
|
|
2119
|
+
} & {
|
|
2120
|
+
value?: _name_string_type_FieldSource_readonlyprimitive_string_or_number_or_datetime_or_string_Array_or_number_Array_or_string___or_number____;
|
|
2121
|
+
}) | ({
|
|
2122
|
+
name: "validate";
|
|
2123
|
+
} & {
|
|
2124
|
+
value?: __x_string__never__;
|
|
2125
|
+
}) | ({
|
|
2126
|
+
name: "inject_shopify_analytics_script";
|
|
2127
|
+
configurationId: string;
|
|
2128
|
+
} & {
|
|
2129
|
+
value?: string;
|
|
2130
|
+
}) | ({
|
|
2131
|
+
name: "configure_shopify_analytics_script";
|
|
2132
|
+
} & {
|
|
2133
|
+
value?: __x_string__never__;
|
|
2134
|
+
}) | ({
|
|
2135
|
+
name: "configure_google_tag_manager";
|
|
2136
|
+
} & {
|
|
2137
|
+
value?: __x_string__never__;
|
|
2138
|
+
}) | ({
|
|
2139
|
+
name: "configure_reelevant_analytics_script";
|
|
2140
|
+
} & {
|
|
2141
|
+
value?: __x_string__never__;
|
|
2142
|
+
}))[];
|
|
2165
2143
|
};
|
|
2166
2144
|
export declare enum FieldMapRuleName {
|
|
2167
2145
|
STATIC = "static",
|
|
@@ -2175,174 +2153,174 @@ export declare enum FieldMapRuleName {
|
|
|
2175
2153
|
}
|
|
2176
2154
|
export declare type DatasourceTypeName = DatasourceType;
|
|
2177
2155
|
export declare type DatasourceTypeObject = {
|
|
2178
|
-
|
|
2179
|
-
|
|
2156
|
+
name: "generic";
|
|
2157
|
+
subtype: DatasourceGenericSubType;
|
|
2180
2158
|
} | {
|
|
2181
|
-
|
|
2182
|
-
|
|
2159
|
+
name: "product";
|
|
2160
|
+
subtype: DatasourceProductSubType;
|
|
2183
2161
|
} | {
|
|
2184
|
-
|
|
2185
|
-
|
|
2162
|
+
name: "location";
|
|
2163
|
+
subtype: DatasourceLocationSubType;
|
|
2186
2164
|
} | {
|
|
2187
|
-
|
|
2188
|
-
|
|
2165
|
+
name: "analytics";
|
|
2166
|
+
subtype: DatasourceAnalyticsSubType;
|
|
2189
2167
|
};
|
|
2190
2168
|
export declare type WorkerSteps = {
|
|
2191
|
-
|
|
2192
|
-
|
|
2169
|
+
name: "configure_name";
|
|
2170
|
+
payload: string;
|
|
2193
2171
|
} | {
|
|
2194
|
-
|
|
2195
|
-
|
|
2172
|
+
name: "configure_resource_group_ids";
|
|
2173
|
+
payload: string[];
|
|
2196
2174
|
} | {
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
} & Partial_Pick_WorkerDatasourceVersion_apiOptions_or_sample_or_textEncoding_or_format__ | {
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
} & Partial_Pick_WorkerDatasourceVersion_textEncoding_or_format__;
|
|
2175
|
+
name: "configure_source";
|
|
2176
|
+
payload: ({
|
|
2177
|
+
urls: string[];
|
|
2178
|
+
ignoreMissingLiveFields?: true;
|
|
2179
|
+
} & Partial_Pick_WorkerDatasourceVersion_apiOptions_or_sample_or_textEncoding_or_format__) | ({
|
|
2180
|
+
file: string;
|
|
2181
|
+
ignoreMissingLiveFields?: string;
|
|
2182
|
+
} & Partial_Pick_WorkerDatasourceVersion_textEncoding_or_format__);
|
|
2205
2183
|
} | {
|
|
2206
|
-
|
|
2207
|
-
|
|
2184
|
+
name: "configure_fieldsmap";
|
|
2185
|
+
payload: FieldMap[];
|
|
2208
2186
|
} | {
|
|
2209
|
-
|
|
2210
|
-
|
|
2187
|
+
name: "configure_field";
|
|
2188
|
+
payload: FieldMap;
|
|
2211
2189
|
} | {
|
|
2212
|
-
|
|
2213
|
-
|
|
2190
|
+
name: "create_oauth_client";
|
|
2191
|
+
payload: {};
|
|
2214
2192
|
} | {
|
|
2215
|
-
|
|
2216
|
-
|
|
2193
|
+
name: "authorize_oauth_client";
|
|
2194
|
+
payload: {};
|
|
2217
2195
|
} | {
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
};
|
|
2226
|
-
} | {
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2196
|
+
name: "configure_thresholds";
|
|
2197
|
+
payload: ({
|
|
2198
|
+
type: "too_many_invalid_entries";
|
|
2199
|
+
value: number;
|
|
2200
|
+
trigger: {
|
|
2201
|
+
type: "error";
|
|
2202
|
+
value: "too_many_invalid_entries";
|
|
2203
|
+
};
|
|
2204
|
+
} | {
|
|
2205
|
+
type: "entries_drop_rate_too_high";
|
|
2206
|
+
value: number;
|
|
2207
|
+
trigger: {
|
|
2208
|
+
type: "warning";
|
|
2209
|
+
value: "entries_drop_rate_too_high";
|
|
2232
2210
|
} | {
|
|
2233
|
-
|
|
2234
|
-
|
|
2211
|
+
type: "error";
|
|
2212
|
+
value: "entries_drop_rate_too_high";
|
|
2235
2213
|
};
|
|
2236
2214
|
})[];
|
|
2237
2215
|
} | {
|
|
2238
|
-
|
|
2239
|
-
|
|
2216
|
+
name: "configure_content";
|
|
2217
|
+
payload: Partial_Pick_PullDatasourceVersion_sample_or_textEncoding_or_format__;
|
|
2240
2218
|
} | {
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2219
|
+
name: "configure_api_key";
|
|
2220
|
+
payload: {
|
|
2221
|
+
value: string;
|
|
2244
2222
|
};
|
|
2245
2223
|
} | {
|
|
2246
|
-
|
|
2247
|
-
|
|
2224
|
+
name: "patch";
|
|
2225
|
+
payload: Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_refresh_or_detectMissingFields_or_batchSize__;
|
|
2248
2226
|
} | {
|
|
2249
|
-
|
|
2250
|
-
|
|
2227
|
+
name: "validate";
|
|
2228
|
+
payload: {};
|
|
2251
2229
|
} | {
|
|
2252
|
-
|
|
2253
|
-
|
|
2230
|
+
name: "configure_shopify_shop_name";
|
|
2231
|
+
payload: string;
|
|
2254
2232
|
} | {
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2233
|
+
name: "configure_twitter";
|
|
2234
|
+
payload: {
|
|
2235
|
+
type: "user" | "hashtag";
|
|
2236
|
+
value: string;
|
|
2259
2237
|
};
|
|
2260
2238
|
} | {
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2239
|
+
name: "configure_product_datasource_source";
|
|
2240
|
+
payload: {
|
|
2241
|
+
datasourceId: string;
|
|
2264
2242
|
};
|
|
2265
2243
|
} | {
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2244
|
+
name: "configure_tracking_datasource_source";
|
|
2245
|
+
payload: {
|
|
2246
|
+
datasourceId: string;
|
|
2269
2247
|
};
|
|
2270
2248
|
} | {
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2249
|
+
name: "configure_best_product_query";
|
|
2250
|
+
payload: {
|
|
2251
|
+
query: string;
|
|
2274
2252
|
};
|
|
2275
2253
|
} | {
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2254
|
+
name: "configure_best_product_field";
|
|
2255
|
+
payload: {
|
|
2256
|
+
field: string;
|
|
2279
2257
|
};
|
|
2280
2258
|
};
|
|
2281
2259
|
export declare type ProxySteps = {
|
|
2282
|
-
|
|
2283
|
-
|
|
2260
|
+
name: "configure_name";
|
|
2261
|
+
payload: string;
|
|
2284
2262
|
} | {
|
|
2285
|
-
|
|
2286
|
-
|
|
2263
|
+
name: "configure_resource_group_ids";
|
|
2264
|
+
payload: string[];
|
|
2287
2265
|
} | {
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2266
|
+
name: "configure_source";
|
|
2267
|
+
payload: {
|
|
2268
|
+
urls: string[];
|
|
2269
|
+
ignoreMissingLiveFields?: true;
|
|
2292
2270
|
} & Partial_Pick_ProxyDatasourceVersion_apiOptions_or_sample_or_textEncoding_or_format__;
|
|
2293
2271
|
} | {
|
|
2294
|
-
|
|
2295
|
-
|
|
2272
|
+
name: "configure_fieldsmap";
|
|
2273
|
+
payload: FieldMap[];
|
|
2296
2274
|
} | {
|
|
2297
|
-
|
|
2298
|
-
|
|
2275
|
+
name: "configure_field";
|
|
2276
|
+
payload: FieldMap;
|
|
2299
2277
|
} | {
|
|
2300
|
-
|
|
2301
|
-
|
|
2278
|
+
name: "create_oauth_client";
|
|
2279
|
+
payload: {};
|
|
2302
2280
|
} | {
|
|
2303
|
-
|
|
2304
|
-
|
|
2281
|
+
name: "authorize_oauth_client";
|
|
2282
|
+
payload: {};
|
|
2305
2283
|
} | {
|
|
2306
|
-
|
|
2307
|
-
|
|
2284
|
+
name: "configure_content";
|
|
2285
|
+
payload: Partial_Pick_PullDatasourceVersion_sample_or_textEncoding_or_format__;
|
|
2308
2286
|
} | {
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2287
|
+
name: "configure_api_key";
|
|
2288
|
+
payload: {
|
|
2289
|
+
value: string;
|
|
2312
2290
|
};
|
|
2313
2291
|
} | {
|
|
2314
|
-
|
|
2315
|
-
|
|
2292
|
+
name: "patch";
|
|
2293
|
+
payload: Pick_ProxyDatasourceVersion_refresh_;
|
|
2316
2294
|
} | {
|
|
2317
|
-
|
|
2318
|
-
|
|
2295
|
+
name: "validate";
|
|
2296
|
+
payload: {};
|
|
2319
2297
|
};
|
|
2320
2298
|
export declare type IngesterSteps = {
|
|
2321
|
-
|
|
2322
|
-
|
|
2299
|
+
name: "configure_name";
|
|
2300
|
+
payload: string;
|
|
2323
2301
|
} | {
|
|
2324
|
-
|
|
2325
|
-
|
|
2302
|
+
name: "configure_resource_group_ids";
|
|
2303
|
+
payload: string[];
|
|
2326
2304
|
} | {
|
|
2327
|
-
|
|
2328
|
-
|
|
2305
|
+
name: "configure_fieldsmap";
|
|
2306
|
+
payload: FieldMap[];
|
|
2329
2307
|
} | {
|
|
2330
|
-
|
|
2331
|
-
|
|
2308
|
+
name: "configure_field";
|
|
2309
|
+
payload: FieldMap;
|
|
2332
2310
|
} | {
|
|
2333
|
-
|
|
2334
|
-
|
|
2311
|
+
name: "validate";
|
|
2312
|
+
payload: {};
|
|
2335
2313
|
} | {
|
|
2336
|
-
|
|
2337
|
-
|
|
2314
|
+
name: "inject_shopify_analytics_script";
|
|
2315
|
+
payload: string;
|
|
2338
2316
|
} | {
|
|
2339
|
-
|
|
2340
|
-
|
|
2317
|
+
name: "configure_shopify_analytics_script";
|
|
2318
|
+
payload: {};
|
|
2341
2319
|
} | {
|
|
2342
|
-
|
|
2343
|
-
|
|
2320
|
+
name: "configure_google_tag_manager";
|
|
2321
|
+
payload: {};
|
|
2344
2322
|
} | {
|
|
2345
|
-
|
|
2346
|
-
|
|
2323
|
+
name: "configure_reelevant_analytics_script";
|
|
2324
|
+
payload: {};
|
|
2347
2325
|
};
|
|
2348
2326
|
export {};
|