UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

29 lines (28 loc) 801 B
/* Copyright (c) 2022 Betim Beja and Shko Online LLC Licensed under the MIT license. */ import { AttributeType } from '../../../ComponentFramework-Mock/PropertyTypes'; export const UserQueryMetadata = { LogicalName: 'userquery', PrimaryIdAttribute: 'userqueryid', PrimaryNameAttribute: 'name', EntitySetName: 'userqueries', Attributes: [{ AttributeType: AttributeType.Uniqueidentifier, LogicalName: 'userqueryid', SchemaName: 'UserQueryId' }, { AttributeType: AttributeType.String, LogicalName: 'name', SchemaName: 'Name' }, { AttributeType: AttributeType.String, LogicalName: 'returnedtypecode', SchemaName: 'ReturnedTypeCode' }, { AttributeType: AttributeType.String, LogicalName: 'fetchxml', SchemaName: 'FetchXML' }] };