feat(site): add document support
This commit is contained in:
12
dist/custom-fields/custom-fields.controller.d.ts
vendored
12
dist/custom-fields/custom-fields.controller.d.ts
vendored
@@ -23,9 +23,9 @@ export declare class CustomFieldsController {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}>;
|
||||
findCustomFieldValuesByEntity(entityType: string, entityId: string): Promise<({
|
||||
customField: {
|
||||
@@ -47,9 +47,9 @@ export declare class CustomFieldsController {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
})[]>;
|
||||
findOneCustomFieldValue(id: string): Promise<({
|
||||
customField: {
|
||||
@@ -71,9 +71,9 @@ export declare class CustomFieldsController {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}) | null>;
|
||||
updateCustomFieldValue(id: string, updateCustomFieldValueDto: UpdateCustomFieldValueDto): Promise<{
|
||||
customField: {
|
||||
@@ -95,9 +95,9 @@ export declare class CustomFieldsController {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}>;
|
||||
removeCustomFieldValue(id: string): Promise<{
|
||||
id: string;
|
||||
@@ -105,9 +105,9 @@ export declare class CustomFieldsController {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}>;
|
||||
upsertCustomFieldValue(body: {
|
||||
customFieldId: string;
|
||||
@@ -134,8 +134,8 @@ export declare class CustomFieldsController {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}>;
|
||||
}
|
||||
|
||||
12
dist/custom-fields/custom-fields.service.d.ts
vendored
12
dist/custom-fields/custom-fields.service.d.ts
vendored
@@ -23,9 +23,9 @@ export declare class CustomFieldsService {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}>;
|
||||
findCustomFieldValuesByEntity(entityType: string, entityId: string): Promise<({
|
||||
customField: {
|
||||
@@ -47,9 +47,9 @@ export declare class CustomFieldsService {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
})[]>;
|
||||
findOneCustomFieldValue(id: string): Promise<({
|
||||
customField: {
|
||||
@@ -71,9 +71,9 @@ export declare class CustomFieldsService {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}) | null>;
|
||||
updateCustomFieldValue(id: string, updateCustomFieldValueDto: UpdateCustomFieldValueDto): Promise<{
|
||||
customField: {
|
||||
@@ -95,9 +95,9 @@ export declare class CustomFieldsService {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}>;
|
||||
removeCustomFieldValue(id: string): Promise<{
|
||||
id: string;
|
||||
@@ -105,9 +105,9 @@ export declare class CustomFieldsService {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}>;
|
||||
upsertCustomFieldValue(customFieldId: string, entityType: string, entityId: string, value: string): Promise<{
|
||||
customField: {
|
||||
@@ -129,8 +129,8 @@ export declare class CustomFieldsService {
|
||||
updatedAt: Date;
|
||||
machineId: string | null;
|
||||
composantId: string | null;
|
||||
pieceId: string | null;
|
||||
value: string;
|
||||
customFieldId: string;
|
||||
pieceId: string | null;
|
||||
}>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user