Opportunity quasi fini

This commit is contained in:
2026-06-08 15:56:13 +02:00
parent a4ae624777
commit fb0af73a0b
57 changed files with 435 additions and 1275 deletions
@@ -1,17 +0,0 @@
/**
* 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;
}
-42
View File
@@ -1,42 +0,0 @@
/**
* 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 {
}
@@ -1,22 +0,0 @@
/**
* 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>;
}
@@ -1,23 +0,0 @@
/**
* 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];
-22
View File
@@ -1,22 +0,0 @@
/**
* 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;
}
@@ -1,24 +0,0 @@
/**
* 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;
}
@@ -1,20 +0,0 @@
/**
* 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;
}
@@ -1,49 +0,0 @@
/**
* 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 {
}
@@ -1,21 +0,0 @@
/**
* 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>;
}
@@ -1,20 +0,0 @@
/**
* 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;
}
@@ -1,16 +0,0 @@
/**
* 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;
}
-17
View File
@@ -1,17 +0,0 @@
/**
* 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;
}
@@ -1,55 +0,0 @@
/**
* 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;
}
@@ -1,58 +0,0 @@
/**
* 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 {
}
@@ -1,48 +0,0 @@
/**
* 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>;
}
@@ -1,58 +0,0 @@
/**
* 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 {
}
-20
View File
@@ -1,20 +0,0 @@
/**
* 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;
}
@@ -1,17 +0,0 @@
/**
* 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;
}
@@ -1,58 +0,0 @@
/**
* 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 {
}
@@ -10,6 +10,7 @@
export interface GetCommunicationDto {
id?: number;
calling?: string | null;
email?: string | null;
meeting?: string | null;
+1 -1
View File
@@ -16,6 +16,6 @@ export interface GetStaffDto {
profession?: string | null;
email?: string | null;
f4T2NumberApproval?: string | null;
f4T2ExpirationDate?: string;
f4T2ExpirationDate?: Date | null;
}
-27
View File
@@ -1,27 +0,0 @@
/**
* 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];
-17
View File
@@ -1,17 +0,0 @@
/**
* 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;
}
@@ -1,19 +0,0 @@
/**
* 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;
}
@@ -1,47 +0,0 @@
/**
* 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;
}
-20
View File
@@ -1,20 +0,0 @@
/**
* 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;
}
@@ -1,27 +0,0 @@
/**
* 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];
-47
View File
@@ -1,47 +0,0 @@
/**
* 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 {
}
@@ -1,34 +0,0 @@
/**
* 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_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];
-52
View File
@@ -1,52 +0,0 @@
/**
* 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 {
}
-38
View File
@@ -1,11 +1,3 @@
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';
@@ -16,17 +8,6 @@ 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';
@@ -37,24 +18,6 @@ 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';
@@ -65,4 +28,3 @@ 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';
@@ -1,15 +0,0 @@
/**
* 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;
}
-26
View File
@@ -1,26 +0,0 @@
/**
* 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;
}
@@ -1,17 +0,0 @@
/**
* 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;
}
@@ -1,29 +0,0 @@
/**
* 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];
@@ -1,35 +0,0 @@
/**
* 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 {
}
@@ -1,33 +0,0 @@
/**
* 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;
}
@@ -1,25 +0,0 @@
/**
* 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;
}
@@ -1,21 +0,0 @@
/**
* 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];
-21
View File
@@ -1,21 +0,0 @@
/**
* 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];
@@ -1,46 +0,0 @@
/**
* 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 {
}