UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

35 lines (33 loc) 1.01 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SavedQueryMetadata = void 0; var _PropertyTypes = require("../../../ComponentFramework-Mock/PropertyTypes"); /* Copyright (c) 2022 Betim Beja and Shko Online LLC Licensed under the MIT license. */ const SavedQueryMetadata = exports.SavedQueryMetadata = { LogicalName: 'savedquery', PrimaryIdAttribute: 'savedqueryid', PrimaryNameAttribute: 'name', EntitySetName: 'savedqueries', Attributes: [{ AttributeType: _PropertyTypes.AttributeType.Uniqueidentifier, LogicalName: 'savedqueryid', SchemaName: 'SavedQueryId' }, { AttributeType: _PropertyTypes.AttributeType.String, LogicalName: 'name', SchemaName: 'Name' }, { AttributeType: _PropertyTypes.AttributeType.String, LogicalName: 'returnedtypecode', SchemaName: 'ReturnedTypeCode' }, { AttributeType: _PropertyTypes.AttributeType.String, LogicalName: 'fetchxml', SchemaName: 'FetchXML' }] };