UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

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