package.json updated + all dto imported
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { MethodInfo } from './method-info';
|
||||
|
||||
|
||||
export interface ActionOfAuthorizationPolicyBuilder {
|
||||
target?: any | null;
|
||||
method?: MethodInfo;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeData } from './custom-attribute-data';
|
||||
import { SecurityRuleSet } from './security-rule-set';
|
||||
import { MethodInfo } from './method-info';
|
||||
import { Module } from './module';
|
||||
|
||||
|
||||
export interface Assembly {
|
||||
definedTypes?: Array<string>;
|
||||
exportedTypes?: Array<string>;
|
||||
/** @deprecated */
|
||||
codeBase?: string | null;
|
||||
entryPoint?: MethodInfo | null;
|
||||
fullName?: string | null;
|
||||
imageRuntimeVersion?: string;
|
||||
isDynamic?: boolean;
|
||||
location?: string;
|
||||
reflectionOnly?: boolean;
|
||||
isCollectible?: boolean;
|
||||
isFullyTrusted?: boolean;
|
||||
customAttributes?: Array<CustomAttributeData>;
|
||||
/** @deprecated */
|
||||
escapedCodeBase?: string;
|
||||
manifestModule?: Module;
|
||||
modules?: Array<Module>;
|
||||
/** @deprecated */
|
||||
globalAssemblyCache?: boolean;
|
||||
hostContext?: number;
|
||||
securityRuleSet?: SecurityRuleSet;
|
||||
}
|
||||
export namespace Assembly {
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { EndpointDefinition } from './endpoint-definition';
|
||||
import { ValidationFailure } from './validation-failure';
|
||||
|
||||
|
||||
/**
|
||||
* the base class all fast endpoints inherit from
|
||||
*/
|
||||
export interface BaseEndpoint {
|
||||
definition?: EndpointDefinition;
|
||||
httpContext?: object;
|
||||
validationFailures?: Array<ValidationFailure>;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export const CallingConventions = {
|
||||
NUMBER_1: 1,
|
||||
NUMBER_2: 2,
|
||||
NUMBER_3: 3,
|
||||
NUMBER_32: 32,
|
||||
NUMBER_64: 64
|
||||
} as const;
|
||||
export type CallingConventions = typeof CallingConventions[keyof typeof CallingConventions];
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { ClaimsIdentity } from './claims-identity';
|
||||
|
||||
|
||||
export interface Claim {
|
||||
issuer?: string;
|
||||
originalIssuer?: string;
|
||||
properties?: { [key: string]: string; };
|
||||
subject?: ClaimsIdentity | null;
|
||||
type?: string;
|
||||
value?: string;
|
||||
valueType?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { Claim } from './claim';
|
||||
|
||||
|
||||
export interface ClaimsIdentity {
|
||||
authenticationType?: string | null;
|
||||
isAuthenticated?: boolean;
|
||||
actor?: ClaimsIdentity | null;
|
||||
bootstrapContext?: any | null;
|
||||
claims?: Array<Claim>;
|
||||
label?: string | null;
|
||||
name?: string | null;
|
||||
nameClaimType?: string;
|
||||
roleClaimType?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { ClaimsIdentity } from './claims-identity';
|
||||
import { IIdentity } from './i-identity';
|
||||
import { Claim } from './claim';
|
||||
|
||||
|
||||
export interface ClaimsPrincipal {
|
||||
claims?: Array<Claim>;
|
||||
identities?: Array<ClaimsIdentity>;
|
||||
identity?: IIdentity | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeData } from './custom-attribute-data';
|
||||
import { CallingConventions } from './calling-conventions';
|
||||
import { MethodImplAttributes } from './method-impl-attributes';
|
||||
import { Module } from './module';
|
||||
import { MemberTypes } from './member-types';
|
||||
|
||||
|
||||
export interface ConstructorInfo {
|
||||
module?: Module;
|
||||
customAttributes?: Array<CustomAttributeData>;
|
||||
isCollectible?: boolean;
|
||||
metadataToken?: number;
|
||||
methodImplementationFlags?: MethodImplAttributes;
|
||||
callingConvention?: CallingConventions;
|
||||
isAbstract?: boolean;
|
||||
isConstructor?: boolean;
|
||||
isFinal?: boolean;
|
||||
isHideBySig?: boolean;
|
||||
isSpecialName?: boolean;
|
||||
isStatic?: boolean;
|
||||
isVirtual?: boolean;
|
||||
isAssembly?: boolean;
|
||||
isFamily?: boolean;
|
||||
isFamilyAndAssembly?: boolean;
|
||||
isFamilyOrAssembly?: boolean;
|
||||
isPrivate?: boolean;
|
||||
isPublic?: boolean;
|
||||
isConstructedGenericMethod?: boolean;
|
||||
isGenericMethod?: boolean;
|
||||
isGenericMethodDefinition?: boolean;
|
||||
containsGenericParameters?: boolean;
|
||||
isSecurityCritical?: boolean;
|
||||
isSecuritySafeCritical?: boolean;
|
||||
isSecurityTransparent?: boolean;
|
||||
memberType?: MemberTypes;
|
||||
}
|
||||
export namespace ConstructorInfo {
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateAvailabilityDto {
|
||||
availabilityDate?: string;
|
||||
deliveryDate?: string;
|
||||
expirationDate?: string;
|
||||
renewalDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateCommunicationDto {
|
||||
calling?: string | null;
|
||||
email?: string | null;
|
||||
meeting?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateContactDto {
|
||||
lastName?: string | null;
|
||||
firstName?: string | null;
|
||||
phoneNumber?: string | null;
|
||||
email?: string | null;
|
||||
address?: string | null;
|
||||
role?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateCustomerDto {
|
||||
note?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateCustomerTypeDto {
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateExperienceLevelDto {
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateHistoryOfApprovalDto {
|
||||
deliveryDate?: string;
|
||||
expirationDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateProviderDto {
|
||||
price?: number;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateProviderTypeDto {
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateStaffDto {
|
||||
f4T2NumberApproval?: string | null;
|
||||
f4T2ExpirationDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeTypedArgument } from './custom-attribute-typed-argument';
|
||||
import { CustomAttributeNamedArgument } from './custom-attribute-named-argument';
|
||||
import { ConstructorInfo } from './constructor-info';
|
||||
|
||||
|
||||
export interface CustomAttributeData {
|
||||
attributeType?: string;
|
||||
constructor?: ConstructorInfo;
|
||||
constructorArguments?: Array<CustomAttributeTypedArgument>;
|
||||
namedArguments?: Array<CustomAttributeNamedArgument>;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeTypedArgument } from './custom-attribute-typed-argument';
|
||||
import { MemberInfo } from './member-info';
|
||||
|
||||
|
||||
export interface CustomAttributeNamedArgument {
|
||||
memberInfo?: MemberInfo;
|
||||
typedValue?: CustomAttributeTypedArgument;
|
||||
memberName?: string;
|
||||
isField?: boolean;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface CustomAttributeTypedArgument {
|
||||
argumentType?: string;
|
||||
value?: any | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { MethodInfo } from './method-info';
|
||||
|
||||
|
||||
export interface Delegate {
|
||||
target?: any | null;
|
||||
method?: MethodInfo;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { ActionOfAuthorizationPolicyBuilder } from './action-of-authorization-policy-builder';
|
||||
import { IdempotencyOptions } from './idempotency-options';
|
||||
import { EndpointSummary } from './endpoint-summary';
|
||||
import { EpVersion } from './ep-version';
|
||||
|
||||
|
||||
/**
|
||||
* represents the configuration settings of an endpoint
|
||||
*/
|
||||
export interface EndpointDefinition {
|
||||
endpointType?: string;
|
||||
mapperType?: string | null;
|
||||
preProcessorsList?: Array<object>;
|
||||
postProcessorsList?: Array<object>;
|
||||
reqDtoType?: string;
|
||||
resDtoType?: string;
|
||||
routes?: Array<string>;
|
||||
securityPolicyName?: string;
|
||||
validatorType?: string | null;
|
||||
verbs?: Array<string>;
|
||||
version?: EpVersion;
|
||||
allowAnyPermission?: boolean;
|
||||
allowedPermissions?: Array<string> | null;
|
||||
allowAnyScope?: boolean;
|
||||
allowedScopes?: Array<string> | null;
|
||||
allowAnyClaim?: boolean;
|
||||
allowedClaimTypes?: Array<string> | null;
|
||||
allowedRoles?: Array<string> | null;
|
||||
anonymousVerbs?: Array<string> | null;
|
||||
antiforgeryEnabled?: boolean;
|
||||
authSchemeNames?: Array<string> | null;
|
||||
dontAutoSend?: boolean;
|
||||
dontAutoTagEndpoints?: boolean;
|
||||
dontBindFormData?: boolean;
|
||||
doNotCatchExceptions?: boolean;
|
||||
endpointAttributes?: Array<any> | null;
|
||||
endpointSummary?: EndpointSummary | null;
|
||||
endpointTags?: Array<string> | null;
|
||||
formDataContentType?: string | null;
|
||||
idempotencyOptions?: IdempotencyOptions | null;
|
||||
overriddenRoutePrefix?: string | null;
|
||||
preBuiltUserPolicies?: Array<string> | null;
|
||||
policyBuilder?: ActionOfAuthorizationPolicyBuilder | null;
|
||||
throwIfValidationFails?: boolean;
|
||||
}
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { GetCommunicationDto } from './get-communication-dto';
|
||||
import { ClaimsPrincipal } from './claims-principal';
|
||||
import { EndpointDefinition } from './endpoint-definition';
|
||||
import { Http } from './http';
|
||||
import { IWebHostEnvironment } from './i-web-host-environment';
|
||||
import { ValidationFailure } from './validation-failure';
|
||||
|
||||
|
||||
export interface EndpointOfEmptyRequestAndListOfGetCommunicationDto {
|
||||
definition?: EndpointDefinition;
|
||||
httpContext?: object;
|
||||
validationFailures?: Array<ValidationFailure>;
|
||||
/**
|
||||
* the response object that is serialized to the response stream.
|
||||
*/
|
||||
response?: Array<GetCommunicationDto> | null;
|
||||
user?: ClaimsPrincipal;
|
||||
/**
|
||||
* Represents a set of key/value application configuration properties.
|
||||
*/
|
||||
config?: object;
|
||||
env?: IWebHostEnvironment;
|
||||
/**
|
||||
* Represents a type used to perform logging.
|
||||
*/
|
||||
logger?: object;
|
||||
/**
|
||||
* the base url of the current request
|
||||
*/
|
||||
baseURL?: string;
|
||||
httpMethod?: Http;
|
||||
/**
|
||||
* the form sent with the request. only populated if content-type is \'application/x-www-form-urlencoded\' or \'multipart/form-data\'
|
||||
*/
|
||||
form?: Array<any>;
|
||||
/**
|
||||
* the files sent with the request. only populated when content-type is \'multipart/form-data\'
|
||||
*/
|
||||
files?: Array<any>;
|
||||
/**
|
||||
* get or set whether the response has started. you\'d only use this if you\'re writing to the response stream by yourself.
|
||||
*/
|
||||
responseStarted?: boolean;
|
||||
validationFailed?: boolean;
|
||||
}
|
||||
export namespace EndpointOfEmptyRequestAndListOfGetCommunicationDto {
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { RequestExample } from './request-example';
|
||||
import { ResponseHeader } from './response-header';
|
||||
|
||||
|
||||
/**
|
||||
* a class used for providing a textual description about an endpoint for swagger
|
||||
*/
|
||||
export interface EndpointSummary {
|
||||
/**
|
||||
* the short summary of the endpoint
|
||||
*/
|
||||
summary?: string;
|
||||
/**
|
||||
* the long description of the endpoint
|
||||
*/
|
||||
description?: string;
|
||||
/**
|
||||
* specify multiple request examples by adding to this collection.
|
||||
*/
|
||||
requestExamples?: Array<RequestExample>;
|
||||
/**
|
||||
* an example request object to be used in swagger/ openapi. multiple examples can be specified by setting this property multiple times or by adding to the RequestExamples collection.
|
||||
*/
|
||||
exampleRequest?: any | null;
|
||||
/**
|
||||
* the descriptions for endpoint parameters. you can add descriptions for route/query params and request dto properties. what you specify here will take precedence over xml comments of dto classes (if they are also specified).
|
||||
*/
|
||||
params?: { [key: string]: string; };
|
||||
/**
|
||||
* the descriptions of the different responses/ status codes an endpoint can return
|
||||
*/
|
||||
responses?: { [key: string]: string; };
|
||||
/**
|
||||
* the response examples for each status code
|
||||
*/
|
||||
responseExamples?: { [key: string]: any; };
|
||||
responseHeaders?: Array<ResponseHeader>;
|
||||
}
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { GetCommunicationDto } from './get-communication-dto';
|
||||
import { ClaimsPrincipal } from './claims-principal';
|
||||
import { EndpointDefinition } from './endpoint-definition';
|
||||
import { Http } from './http';
|
||||
import { IWebHostEnvironment } from './i-web-host-environment';
|
||||
import { ValidationFailure } from './validation-failure';
|
||||
|
||||
|
||||
export interface EndpointWithoutRequestOfListOfGetCommunicationDto {
|
||||
definition?: EndpointDefinition;
|
||||
httpContext?: object;
|
||||
validationFailures?: Array<ValidationFailure>;
|
||||
/**
|
||||
* the response object that is serialized to the response stream.
|
||||
*/
|
||||
response?: Array<GetCommunicationDto> | null;
|
||||
user?: ClaimsPrincipal;
|
||||
/**
|
||||
* Represents a set of key/value application configuration properties.
|
||||
*/
|
||||
config?: object;
|
||||
env?: IWebHostEnvironment;
|
||||
/**
|
||||
* Represents a type used to perform logging.
|
||||
*/
|
||||
logger?: object;
|
||||
/**
|
||||
* the base url of the current request
|
||||
*/
|
||||
baseURL?: string;
|
||||
httpMethod?: Http;
|
||||
/**
|
||||
* the form sent with the request. only populated if content-type is \'application/x-www-form-urlencoded\' or \'multipart/form-data\'
|
||||
*/
|
||||
form?: Array<object>;
|
||||
/**
|
||||
* the files sent with the request. only populated when content-type is \'multipart/form-data\'
|
||||
*/
|
||||
files?: Array<object>;
|
||||
/**
|
||||
* get or set whether the response has started. you\'d only use this if you\'re writing to the response stream by yourself.
|
||||
*/
|
||||
responseStarted?: boolean;
|
||||
validationFailed?: boolean;
|
||||
}
|
||||
export namespace EndpointWithoutRequestOfListOfGetCommunicationDto {
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* represents an endpoint version
|
||||
*/
|
||||
export interface EpVersion {
|
||||
current?: number;
|
||||
startingReleaseVersion?: number;
|
||||
deprecatedAt?: number;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { MethodInfo } from './method-info';
|
||||
|
||||
|
||||
export interface FuncOfObject {
|
||||
target?: any | null;
|
||||
method?: MethodInfo;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { GetCommunicationDto } from './get-communication-dto';
|
||||
import { ClaimsPrincipal } from './claims-principal';
|
||||
import { EndpointDefinition } from './endpoint-definition';
|
||||
import { Http } from './http';
|
||||
import { IWebHostEnvironment } from './i-web-host-environment';
|
||||
import { ValidationFailure } from './validation-failure';
|
||||
|
||||
|
||||
export interface GetAllCommunicationsEndpoint {
|
||||
definition?: EndpointDefinition;
|
||||
httpContext?: object;
|
||||
validationFailures?: Array<ValidationFailure>;
|
||||
/**
|
||||
* the response object that is serialized to the response stream.
|
||||
*/
|
||||
response?: Array<GetCommunicationDto> | null;
|
||||
user?: ClaimsPrincipal;
|
||||
/**
|
||||
* Represents a set of key/value application configuration properties.
|
||||
*/
|
||||
config?: object;
|
||||
env?: IWebHostEnvironment;
|
||||
/**
|
||||
* Represents a type used to perform logging.
|
||||
*/
|
||||
logger?: object;
|
||||
/**
|
||||
* the base url of the current request
|
||||
*/
|
||||
baseURL?: string;
|
||||
httpMethod?: Http;
|
||||
/**
|
||||
* the form sent with the request. only populated if content-type is \'application/x-www-form-urlencoded\' or \'multipart/form-data\'
|
||||
*/
|
||||
form?: Array<object>;
|
||||
/**
|
||||
* the files sent with the request. only populated when content-type is \'multipart/form-data\'
|
||||
*/
|
||||
files?: Array<object>;
|
||||
/**
|
||||
* get or set whether the response has started. you\'d only use this if you\'re writing to the response stream by yourself.
|
||||
*/
|
||||
responseStarted?: boolean;
|
||||
validationFailed?: boolean;
|
||||
}
|
||||
export namespace GetAllCommunicationsEndpoint {
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetAvailabilityDto {
|
||||
id?: number;
|
||||
availabilityDate?: string;
|
||||
deliveryDate?: string;
|
||||
expirationDate?: string;
|
||||
renewalDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetCommunicationDto {
|
||||
calling?: string | null;
|
||||
email?: string | null;
|
||||
meeting?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetContactDto {
|
||||
id?: number;
|
||||
lastName?: string | null;
|
||||
firstName?: string | null;
|
||||
phoneNumber?: string | null;
|
||||
email?: string | null;
|
||||
address?: string | null;
|
||||
role?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetCustomerDto {
|
||||
id?: number;
|
||||
note?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetCustomerTypeDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetExperienceLevelDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetHistoryOfApprovalDto {
|
||||
id?: number;
|
||||
deliveryDate?: string;
|
||||
expirationDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetProviderDto {
|
||||
id?: number;
|
||||
price?: number;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetProviderTypeDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetStaffDto {
|
||||
id?: number;
|
||||
f4T2NumberApproval?: string | null;
|
||||
f4T2ExpirationDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* enum for specifying a http verb
|
||||
*/
|
||||
export const Http = {
|
||||
NUMBER_1: 1,
|
||||
NUMBER_2: 2,
|
||||
NUMBER_3: 3,
|
||||
NUMBER_4: 4,
|
||||
NUMBER_5: 5,
|
||||
NUMBER_6: 6,
|
||||
NUMBER_7: 7,
|
||||
NUMBER_8: 8,
|
||||
NUMBER_9: 9
|
||||
} as const;
|
||||
export type Http = typeof Http[keyof typeof Http];
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface IIdentity {
|
||||
name?: string | null;
|
||||
authenticationType?: string | null;
|
||||
isAuthenticated?: boolean;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface IWebHostEnvironment {
|
||||
webRootPath?: string;
|
||||
/**
|
||||
* A read-only file provider abstraction.
|
||||
*/
|
||||
webRootFileProvider?: object;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { FuncOfObject } from './func-of-object';
|
||||
|
||||
|
||||
/**
|
||||
* idempotency settings for an endpoint
|
||||
*/
|
||||
export interface IdempotencyOptions {
|
||||
/**
|
||||
* the header name that will contain the idempotency key. defaults to Idempotency-Key
|
||||
*/
|
||||
headerName?: string;
|
||||
/**
|
||||
* any additional headers that should participate in the generation of the cache-key. see the source/definition for the list of default additional headers.
|
||||
*/
|
||||
additionalHeaders?: Array<string>;
|
||||
/**
|
||||
* by default, the contents of the request body (form data/json) is taken into consideration when determining the uniqueness of incoming requests even if the idempotency-key is the same among them. i.e. if two different requests come in with the same idempotency-key but with different request body content, they will be considered to be unique requests and the endpoint will be executed for each request.
|
||||
*/
|
||||
ignoreRequestBody?: boolean;
|
||||
/**
|
||||
* determines how long the cached responses will remain in the cache store before being evicted. defaults to 10 minutes.
|
||||
*/
|
||||
cacheDuration?: string;
|
||||
/**
|
||||
* by default, the idempotency header will be automatically added to the response headers collection. set false to prevent that from happening.
|
||||
*/
|
||||
addHeaderToResponse?: boolean;
|
||||
/**
|
||||
* the description text for the swagger request header parameter
|
||||
*/
|
||||
swaggerHeaderDescription?: string | null;
|
||||
swaggerExampleGenerator?: FuncOfObject | null;
|
||||
/**
|
||||
* the type/format of the swagger example value
|
||||
*/
|
||||
swaggerHeaderType?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeData } from './custom-attribute-data';
|
||||
import { Module } from './module';
|
||||
|
||||
|
||||
export interface MemberInfo {
|
||||
module?: Module;
|
||||
customAttributes?: Array<CustomAttributeData>;
|
||||
isCollectible?: boolean;
|
||||
metadataToken?: number;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export const MemberTypes = {
|
||||
NUMBER_1: 1,
|
||||
NUMBER_2: 2,
|
||||
NUMBER_4: 4,
|
||||
NUMBER_8: 8,
|
||||
NUMBER_16: 16,
|
||||
NUMBER_32: 32,
|
||||
NUMBER_64: 64,
|
||||
NUMBER_128: 128,
|
||||
NUMBER_191: 191
|
||||
} as const;
|
||||
export type MemberTypes = typeof MemberTypes[keyof typeof MemberTypes];
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeData } from './custom-attribute-data';
|
||||
import { CallingConventions } from './calling-conventions';
|
||||
import { MethodImplAttributes } from './method-impl-attributes';
|
||||
import { Module } from './module';
|
||||
|
||||
|
||||
export interface MethodBase {
|
||||
module?: Module;
|
||||
customAttributes?: Array<CustomAttributeData>;
|
||||
isCollectible?: boolean;
|
||||
metadataToken?: number;
|
||||
methodImplementationFlags?: MethodImplAttributes;
|
||||
callingConvention?: CallingConventions;
|
||||
isAbstract?: boolean;
|
||||
isConstructor?: boolean;
|
||||
isFinal?: boolean;
|
||||
isHideBySig?: boolean;
|
||||
isSpecialName?: boolean;
|
||||
isStatic?: boolean;
|
||||
isVirtual?: boolean;
|
||||
isAssembly?: boolean;
|
||||
isFamily?: boolean;
|
||||
isFamilyAndAssembly?: boolean;
|
||||
isFamilyOrAssembly?: boolean;
|
||||
isPrivate?: boolean;
|
||||
isPublic?: boolean;
|
||||
isConstructedGenericMethod?: boolean;
|
||||
isGenericMethod?: boolean;
|
||||
isGenericMethodDefinition?: boolean;
|
||||
containsGenericParameters?: boolean;
|
||||
isSecurityCritical?: boolean;
|
||||
isSecuritySafeCritical?: boolean;
|
||||
isSecurityTransparent?: boolean;
|
||||
}
|
||||
export namespace MethodBase {
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export const MethodImplAttributes = {
|
||||
NUMBER_0: 0,
|
||||
NUMBER_02: 0,
|
||||
NUMBER_1: 1,
|
||||
NUMBER_2: 2,
|
||||
NUMBER_3: 3,
|
||||
NUMBER_32: 3,
|
||||
NUMBER_4: 4,
|
||||
NUMBER_42: 4,
|
||||
NUMBER_8: 8,
|
||||
NUMBER_16: 16,
|
||||
NUMBER_32: 32,
|
||||
NUMBER_64: 64,
|
||||
NUMBER_128: 128,
|
||||
NUMBER_256: 256,
|
||||
NUMBER_512: 512,
|
||||
NUMBER_4096: 4096,
|
||||
NUMBER_65535: 65535
|
||||
} as const;
|
||||
export type MethodImplAttributes = typeof MethodImplAttributes[keyof typeof MethodImplAttributes];
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeData } from './custom-attribute-data';
|
||||
import { CallingConventions } from './calling-conventions';
|
||||
import { MethodImplAttributes } from './method-impl-attributes';
|
||||
import { ParameterInfo } from './parameter-info';
|
||||
import { Module } from './module';
|
||||
import { MemberTypes } from './member-types';
|
||||
|
||||
|
||||
export interface MethodInfo {
|
||||
module?: Module;
|
||||
customAttributes?: Array<CustomAttributeData>;
|
||||
isCollectible?: boolean;
|
||||
metadataToken?: number;
|
||||
methodImplementationFlags?: MethodImplAttributes;
|
||||
callingConvention?: CallingConventions;
|
||||
isAbstract?: boolean;
|
||||
isConstructor?: boolean;
|
||||
isFinal?: boolean;
|
||||
isHideBySig?: boolean;
|
||||
isSpecialName?: boolean;
|
||||
isStatic?: boolean;
|
||||
isVirtual?: boolean;
|
||||
isAssembly?: boolean;
|
||||
isFamily?: boolean;
|
||||
isFamilyAndAssembly?: boolean;
|
||||
isFamilyOrAssembly?: boolean;
|
||||
isPrivate?: boolean;
|
||||
isPublic?: boolean;
|
||||
isConstructedGenericMethod?: boolean;
|
||||
isGenericMethod?: boolean;
|
||||
isGenericMethodDefinition?: boolean;
|
||||
containsGenericParameters?: boolean;
|
||||
isSecurityCritical?: boolean;
|
||||
isSecuritySafeCritical?: boolean;
|
||||
isSecurityTransparent?: boolean;
|
||||
memberType?: MemberTypes;
|
||||
returnParameter?: ParameterInfo;
|
||||
returnType?: string;
|
||||
}
|
||||
export namespace MethodInfo {
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
export * from './action-of-authorization-policy-builder';
|
||||
export * from './assembly';
|
||||
export * from './base-endpoint';
|
||||
export * from './calling-conventions';
|
||||
export * from './claim';
|
||||
export * from './claims-identity';
|
||||
export * from './claims-principal';
|
||||
export * from './constructor-info';
|
||||
export * from './create-availability-dto';
|
||||
export * from './create-communication-dto';
|
||||
export * from './create-contact-dto';
|
||||
export * from './create-customer-dto';
|
||||
export * from './create-customer-type-dto';
|
||||
export * from './create-experience-level-dto';
|
||||
export * from './create-history-of-approval-dto';
|
||||
export * from './create-provider-dto';
|
||||
export * from './create-provider-type-dto';
|
||||
export * from './create-staff-dto';
|
||||
export * from './custom-attribute-data';
|
||||
export * from './custom-attribute-named-argument';
|
||||
export * from './custom-attribute-typed-argument';
|
||||
export * from './delegate';
|
||||
export * from './endpoint-definition';
|
||||
export * from './endpoint-of-empty-request-and-list-of-get-communication-dto';
|
||||
export * from './endpoint-summary';
|
||||
export * from './endpoint-without-request-of-list-of-get-communication-dto';
|
||||
export * from './ep-version';
|
||||
export * from './func-of-object';
|
||||
export * from './get-all-communications-endpoint';
|
||||
export * from './get-availability-dto';
|
||||
export * from './get-communication-dto';
|
||||
export * from './get-contact-dto';
|
||||
export * from './get-customer-dto';
|
||||
export * from './get-customer-type-dto';
|
||||
export * from './get-experience-level-dto';
|
||||
export * from './get-history-of-approval-dto';
|
||||
export * from './get-provider-dto';
|
||||
export * from './get-provider-type-dto';
|
||||
export * from './get-staff-dto';
|
||||
export * from './http';
|
||||
export * from './i-identity';
|
||||
export * from './i-web-host-environment';
|
||||
export * from './idempotency-options';
|
||||
export * from './member-info';
|
||||
export * from './member-types';
|
||||
export * from './method-base';
|
||||
export * from './method-impl-attributes';
|
||||
export * from './method-info';
|
||||
export * from './module';
|
||||
export * from './module-handle';
|
||||
export * from './multicast-delegate';
|
||||
export * from './parameter-attributes';
|
||||
export * from './parameter-info';
|
||||
export * from './request-example';
|
||||
export * from './response-header';
|
||||
export * from './security-rule-set';
|
||||
export * from './severity';
|
||||
export * from './update-availability-dto';
|
||||
export * from './update-communication-dto';
|
||||
export * from './update-contact-dto';
|
||||
export * from './update-customer-dto';
|
||||
export * from './update-customer-type-dto';
|
||||
export * from './update-experience-level-dto';
|
||||
export * from './update-history-of-approval-dto';
|
||||
export * from './update-provider-dto';
|
||||
export * from './update-provider-type-dto';
|
||||
export * from './update-staff-dto';
|
||||
export * from './validation-failure';
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface ModuleHandle {
|
||||
mdStreamVersion?: number;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeData } from './custom-attribute-data';
|
||||
import { Assembly } from './assembly';
|
||||
import { ModuleHandle } from './module-handle';
|
||||
|
||||
|
||||
export interface Module {
|
||||
assembly?: Assembly;
|
||||
fullyQualifiedName?: string;
|
||||
name?: string;
|
||||
mdStreamVersion?: number;
|
||||
moduleVersionId?: string;
|
||||
scopeName?: string;
|
||||
moduleHandle?: ModuleHandle;
|
||||
customAttributes?: Array<CustomAttributeData>;
|
||||
metadataToken?: number;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { MethodInfo } from './method-info';
|
||||
|
||||
|
||||
export interface MulticastDelegate {
|
||||
target?: any | null;
|
||||
method?: MethodInfo;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export const ParameterAttributes = {
|
||||
NUMBER_0: 0,
|
||||
NUMBER_1: 1,
|
||||
NUMBER_2: 2,
|
||||
NUMBER_4: 4,
|
||||
NUMBER_8: 8,
|
||||
NUMBER_16: 16,
|
||||
NUMBER_4096: 4096,
|
||||
NUMBER_8192: 8192,
|
||||
NUMBER_16384: 16384,
|
||||
NUMBER_32768: 32768,
|
||||
NUMBER_61440: 61440
|
||||
} as const;
|
||||
export type ParameterAttributes = typeof ParameterAttributes[keyof typeof ParameterAttributes];
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { CustomAttributeData } from './custom-attribute-data';
|
||||
import { MemberInfo } from './member-info';
|
||||
import { ParameterAttributes } from './parameter-attributes';
|
||||
|
||||
|
||||
export interface ParameterInfo {
|
||||
attributes?: ParameterAttributes;
|
||||
member?: MemberInfo;
|
||||
name?: string | null;
|
||||
parameterType?: string;
|
||||
position?: number;
|
||||
isIn?: boolean;
|
||||
isLcid?: boolean;
|
||||
isOptional?: boolean;
|
||||
isOut?: boolean;
|
||||
isRetval?: boolean;
|
||||
defaultValue?: any | null;
|
||||
rawDefaultValue?: any | null;
|
||||
hasDefaultValue?: boolean;
|
||||
customAttributes?: Array<CustomAttributeData>;
|
||||
metadataToken?: number;
|
||||
}
|
||||
export namespace ParameterInfo {
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* represents a swagger example request analogous to an OpenApiExample
|
||||
*/
|
||||
export interface RequestExample {
|
||||
/**
|
||||
* the summary text of this example request
|
||||
*/
|
||||
summary?: string | null;
|
||||
/**
|
||||
* the description of this example request
|
||||
*/
|
||||
description?: string | null;
|
||||
/**
|
||||
* the actual example request object
|
||||
*/
|
||||
value?: any | null;
|
||||
/**
|
||||
* the label/name for this example request
|
||||
*/
|
||||
label?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* describes a swagger response header for a certain response dto
|
||||
*/
|
||||
export interface ResponseHeader {
|
||||
/**
|
||||
* description for the header
|
||||
*/
|
||||
description?: string | null;
|
||||
/**
|
||||
* an example header value
|
||||
*/
|
||||
example?: any | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export const SecurityRuleSet = {
|
||||
NUMBER_0: 0,
|
||||
NUMBER_1: 1,
|
||||
NUMBER_2: 2
|
||||
} as const;
|
||||
export type SecurityRuleSet = typeof SecurityRuleSet[keyof typeof SecurityRuleSet];
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Specifies the severity of a rule.
|
||||
*/
|
||||
export const Severity = {
|
||||
NUMBER_0: 0,
|
||||
NUMBER_1: 1,
|
||||
NUMBER_2: 2
|
||||
} as const;
|
||||
export type Severity = typeof Severity[keyof typeof Severity];
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateAvailabilityDto {
|
||||
availabilityDate?: string;
|
||||
deliveryDate?: string;
|
||||
expirationDate?: string;
|
||||
renewalDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateCommunicationDto {
|
||||
calling?: string | null;
|
||||
email?: string | null;
|
||||
meeting?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateContactDto {
|
||||
lastName?: string | null;
|
||||
firstName?: string | null;
|
||||
phoneNumber?: string | null;
|
||||
email?: string | null;
|
||||
address?: string | null;
|
||||
role?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateCustomerDto {
|
||||
note?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateCustomerTypeDto {
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateExperienceLevelDto {
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateHistoryOfApprovalDto {
|
||||
deliveryDate?: string;
|
||||
expirationDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateProviderDto {
|
||||
price?: number;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateProviderTypeDto {
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateStaffDto {
|
||||
f4T2NumberApproval?: string | null;
|
||||
f4T2ExpirationDate?: string;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
/**
|
||||
* PyroFetes
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { Severity } from './severity';
|
||||
|
||||
|
||||
/**
|
||||
* Defines a validation failure
|
||||
*/
|
||||
export interface ValidationFailure {
|
||||
/**
|
||||
* The name of the property.
|
||||
*/
|
||||
propertyName?: string | null;
|
||||
/**
|
||||
* The error message
|
||||
*/
|
||||
errorMessage?: string | null;
|
||||
/**
|
||||
* The property value that caused the failure.
|
||||
*/
|
||||
attemptedValue?: any | null;
|
||||
/**
|
||||
* Custom state associated with the failure.
|
||||
*/
|
||||
customState?: any | null;
|
||||
severity?: Severity;
|
||||
/**
|
||||
* Gets or sets the error code.
|
||||
*/
|
||||
errorCode?: string | null;
|
||||
/**
|
||||
* Gets or sets the formatted message placeholder values.
|
||||
*/
|
||||
formattedMessagePlaceholderValues?: { [key: string]: any; } | null;
|
||||
}
|
||||
export namespace ValidationFailure {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user