UNPKG

facebook-nodejs-business-sdk

Version:

SDK for the Facebook Marketing API in Javascript and Node.js

78 lines (70 loc) 2.11 kB
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import {AbstractCrudObject} from './../abstract-crud-object'; import Cursor from './../cursor'; import ProductFeedUploadError from './product-feed-upload-error'; /** * ProductFeedUpload * @extends AbstractCrudObject * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class ProductFeedUpload extends AbstractCrudObject { static get Fields (): Object { return Object.freeze({ end_time: 'end_time', error_count: 'error_count', error_report: 'error_report', filename: 'filename', id: 'id', input_method: 'input_method', num_deleted_items: 'num_deleted_items', num_detected_items: 'num_detected_items', num_invalid_items: 'num_invalid_items', num_persisted_items: 'num_persisted_items', start_time: 'start_time', url: 'url', warning_count: 'warning_count', }); } static get InputMethod (): Object { return Object.freeze({ google_sheets_fetch: 'Google Sheets Fetch', manual_upload: 'Manual Upload', reupload_last_file: 'Reupload Last File', server_fetch: 'Server Fetch', user_initiated_server_fetch: 'User initiated server fetch', }); } createErrorReport (fields: Array<string>, params: Object = {}, pathOverride?: ?string = null): Promise<ProductFeedUpload> { return this.createEdge( '/error_report', fields, params, ProductFeedUpload, pathOverride, ); } getErrors (fields: Array<string>, params: Object = {}, fetchFirstPage: boolean = true): Cursor | Promise<*> { return this.getEdge( ProductFeedUploadError, fields, params, fetchFirstPage, '/errors' ); } get (fields: Array<string>, params: Object = {}): ProductFeedUpload { // $FlowFixMe : Support Generic Types return this.read( fields, params ); } }