UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

22 lines (21 loc) 863 B
/** * Copyright IBM Corp. 2024, 2025 */ export class AssertConstants { } AssertConstants.equals_action = 'equals'; AssertConstants.not_equals_action = 'notEquals'; AssertConstants.have_property_action = 'haveProperty'; AssertConstants.not_have_property_action = 'notHaveProperty'; AssertConstants.lessThan_action = 'lessThan'; AssertConstants.greaterThan_action = 'greaterThan'; AssertConstants.validateSchema_action = 'validateSchema'; AssertConstants.inValidateSchema_action = 'inValidateSchema'; AssertConstants.lengthOf_action = 'lengthOf'; AssertConstants.include_action = 'include'; AssertConstants.responseJsonTypeKey = 'json()'; AssertConstants.responseHeaderKey = 'header()'; AssertConstants.responseXmlTypeKey = 'xml()'; AssertConstants.responseTextTypeKey = 'text()'; AssertConstants.matches_action = 'matches'; AssertConstants.type_action = 'type';