adamo-types 2.0.70-sit → 2.0.72-sit

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/bss/bearingpoint/{address.entity.d.ts → address/address.entity.d.ts} +8 -6
  2. package/dist/bss/bearingpoint/address/address.entity.js +3 -0
  3. package/dist/bss/bearingpoint/address/index.d.ts +1 -0
  4. package/dist/{common/edge-bss → bss/bearingpoint}/address/index.js +1 -1
  5. package/dist/bss/bearingpoint/customer/customer-account-document.entity.d.ts +5 -3
  6. package/dist/bss/bearingpoint/customer/customer-account-document.entity.js +0 -7
  7. package/dist/bss/bearingpoint/customer/customer-account-note.entity.d.ts +5 -4
  8. package/dist/bss/bearingpoint/customer/customer-account-note.entity.js +1 -7
  9. package/dist/bss/bearingpoint/index.d.ts +0 -1
  10. package/dist/bss/bearingpoint/index.js +0 -1
  11. package/dist/bss/bearingpoint/product-offering/product-offering-summary.entity.d.ts +2 -2
  12. package/dist/bss/constants/bp.constants.d.ts +1 -1
  13. package/dist/bss/constants/bp.constants.js +18 -18
  14. package/dist/bss/customer/customer-product.entity.d.ts +2 -2
  15. package/dist/bss/customer/customer.entity.d.ts +3 -17
  16. package/dist/bss/customer/customer.entity.js +2 -8
  17. package/dist/bss/tariff-model/index.d.ts +1 -1
  18. package/dist/bss/tariff-model/index.js +1 -1
  19. package/dist/bss/tariff-model/{internal/internal.entity.d.ts → tariff-model.entity.d.ts} +8 -7
  20. package/dist/bss/tariff-model/tariff-model.entity.js +3 -0
  21. package/dist/common/constants/updowngrade.error.constants.d.ts +1 -1
  22. package/dist/common/constants/updowngrade.error.constants.js +1 -1
  23. package/dist/common/edge-bss/customer/req/create.entity.d.ts +1 -14
  24. package/dist/common/edge-bss/customer/req/create.entity.js +1 -13
  25. package/dist/common/edge-bss/index.d.ts +0 -1
  26. package/dist/common/edge-bss/index.js +0 -1
  27. package/dist/common/edge-zoho/sale-process/req/create.entity.d.ts +2 -2
  28. package/dist/common/edge-zoho/sale-process/req/create.entity.js +2 -2
  29. package/dist/common/edge-zoho/sale-process/req/patch.entity.d.ts +2 -2
  30. package/dist/common/edge-zoho/sale-process/req/patch.entity.js +4 -4
  31. package/dist/database/ars/product-transition-configuration.entity.js +1 -1
  32. package/dist/sys03/approval/approval.entity.d.ts +2 -2
  33. package/dist/sys03/common/common.entity.d.ts +3 -3
  34. package/dist/sys03/common/common.entity.js +3 -3
  35. package/dist/sys03/customer/customer-account-address.entity.d.ts +36 -0
  36. package/dist/sys03/customer/customer-account-address.entity.js +130 -0
  37. package/dist/sys03/customer/customer-account-note.entity.d.ts +10 -0
  38. package/dist/sys03/customer/customer-account-note.entity.js +17 -0
  39. package/dist/sys03/customer/customer-account.entitty.d.ts +7 -1
  40. package/dist/sys03/customer/customer-account.entitty.js +4 -1
  41. package/dist/sys03/customer/customer-product.entity.d.ts +2 -2
  42. package/dist/sys03/customer/index.d.ts +2 -0
  43. package/dist/sys03/customer/index.js +2 -0
  44. package/dist/sys03/sale-process/internal/internal.entity.d.ts +2 -2
  45. package/dist/sys03/user/user.entity.d.ts +3 -3
  46. package/dist/tsconfig.build.tsbuildinfo +1 -1
  47. package/dist/zoho/sale-process/billing-info.entity.d.ts +2 -2
  48. package/dist/zoho/sale-process/billing-info.entity.js +1 -9
  49. package/dist/zoho/sale-process/customer.entity.d.ts +2 -2
  50. package/dist/zoho/sale-process/customer.entity.js +1 -8
  51. package/dist/zoho/sale-process/file.entity.d.ts +2 -2
  52. package/dist/zoho/sale-process/file.entity.js +1 -1
  53. package/package.json +1 -1
  54. package/dist/bss/bearingpoint/address.entity.js +0 -16
  55. package/dist/bss/tariff-model/internal/internal.entity.js +0 -16
  56. package/dist/common/edge-bss/address/index.d.ts +0 -1
  57. package/dist/common/edge-bss/address/req/create.entity.d.ts +0 -19
  58. package/dist/common/edge-bss/address/req/create.entity.js +0 -117
@@ -0,0 +1,36 @@
1
+ export declare class CustomerAccountAddressDto {
2
+ id: string;
3
+ country: string;
4
+ postcode: string;
5
+ province: string;
6
+ city: string;
7
+ streetType: string;
8
+ streetName: string;
9
+ streetNumber: string;
10
+ block?: string;
11
+ floor?: string;
12
+ door?: string;
13
+ entrance?: string;
14
+ referenceId: string;
15
+ referenceSystem?: string;
16
+ serviceableStatus: string;
17
+ salesAreaId: string;
18
+ projectCode: string;
19
+ competition: string;
20
+ }
21
+ declare const CreateCustomerAccountAddressDto_base: import("@nestjs/common").Type<Omit<CustomerAccountAddressDto, "id" | "referenceId" | "serviceableStatus" | "salesAreaId" | "projectCode" | "competition"> & Partial<Pick<CustomerAccountAddressDto, keyof CustomerAccountAddressDto>>>;
22
+ export declare class CreateCustomerAccountAddressDto extends CreateCustomerAccountAddressDto_base {
23
+ }
24
+ export declare class CreateCustomerAccountAddressReqDto {
25
+ postcode: string;
26
+ province: string;
27
+ city: string;
28
+ streetType: string;
29
+ streetName: string;
30
+ streetNumber: string;
31
+ block?: string;
32
+ floor?: string;
33
+ door?: string;
34
+ entrance?: string;
35
+ }
36
+ export {};
@@ -0,0 +1,130 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.CreateCustomerAccountAddressReqDto = exports.CreateCustomerAccountAddressDto = exports.CustomerAccountAddressDto = void 0;
13
+ const openapi = require("@nestjs/swagger");
14
+ const swagger_1 = require("@nestjs/swagger");
15
+ const _validators_1 = require("../../validators/index");
16
+ const class_transformer_1 = require("class-transformer");
17
+ const class_validator_1 = require("class-validator");
18
+ class CustomerAccountAddressDto {
19
+ static _OPENAPI_METADATA_FACTORY() {
20
+ return { id: { required: true, type: () => String }, country: { required: true, type: () => String }, postcode: { required: true, type: () => String }, province: { required: true, type: () => String }, city: { required: true, type: () => String }, streetType: { required: true, type: () => String }, streetName: { required: true, type: () => String }, streetNumber: { required: true, type: () => String }, block: { required: false, type: () => String }, floor: { required: false, type: () => String }, door: { required: false, type: () => String }, entrance: { required: false, type: () => String }, referenceId: { required: true, type: () => String }, referenceSystem: { required: false, type: () => String }, serviceableStatus: { required: true, type: () => String }, salesAreaId: { required: true, type: () => String }, projectCode: { required: true, type: () => String }, competition: { required: true, type: () => String } };
21
+ }
22
+ }
23
+ exports.CustomerAccountAddressDto = CustomerAccountAddressDto;
24
+ class CreateCustomerAccountAddressDto extends (0, swagger_1.IntersectionType)((0, swagger_1.OmitType)(CustomerAccountAddressDto, ['id', 'referenceId', 'serviceableStatus', 'salesAreaId', 'projectCode', 'competition']), (0, swagger_1.PartialType)((0, swagger_1.PickType)(CustomerAccountAddressDto, ['referenceId', 'serviceableStatus', 'salesAreaId', 'projectCode', 'competition']))) {
25
+ static _OPENAPI_METADATA_FACTORY() {
26
+ return {};
27
+ }
28
+ }
29
+ exports.CreateCustomerAccountAddressDto = CreateCustomerAccountAddressDto;
30
+ class CreateCustomerAccountAddressReqDto {
31
+ static _OPENAPI_METADATA_FACTORY() {
32
+ return { postcode: { required: true, type: () => String, pattern: "/^[0-9]{1,5}$/" }, province: { required: true, type: () => String }, city: { required: true, type: () => String }, streetType: { required: true, type: () => String }, streetName: { required: true, type: () => String }, streetNumber: { required: true, type: () => String }, block: { required: false, type: () => String }, floor: { required: false, type: () => String }, door: { required: false, type: () => String }, entrance: { required: false, type: () => String } };
33
+ }
34
+ }
35
+ exports.CreateCustomerAccountAddressReqDto = CreateCustomerAccountAddressReqDto;
36
+ __decorate([
37
+ (0, class_validator_1.IsString)(),
38
+ (0, class_validator_1.Matches)(/^[0-9]{1,5}$/),
39
+ (0, class_transformer_1.Transform)(({ value }) => {
40
+ if (value && value.length < 5) {
41
+ return value.toString().padStart(5, '0');
42
+ }
43
+ return value;
44
+ }),
45
+ (0, class_transformer_1.Expose)(),
46
+ __metadata("design:type", String)
47
+ ], CreateCustomerAccountAddressReqDto.prototype, "postcode", void 0);
48
+ __decorate([
49
+ (0, class_validator_1.IsString)(),
50
+ (0, class_validator_1.IsNotEmpty)(),
51
+ (0, _validators_1.IsNotBlank)(),
52
+ (0, class_transformer_1.Expose)(),
53
+ __metadata("design:type", String)
54
+ ], CreateCustomerAccountAddressReqDto.prototype, "province", void 0);
55
+ __decorate([
56
+ (0, class_validator_1.IsString)(),
57
+ (0, class_validator_1.IsNotEmpty)(),
58
+ (0, _validators_1.IsNotBlank)(),
59
+ (0, class_transformer_1.Expose)(),
60
+ __metadata("design:type", String)
61
+ ], CreateCustomerAccountAddressReqDto.prototype, "city", void 0);
62
+ __decorate([
63
+ (0, class_validator_1.IsString)(),
64
+ (0, class_validator_1.IsNotEmpty)(),
65
+ (0, _validators_1.IsNotBlank)(),
66
+ (0, class_transformer_1.Expose)(),
67
+ __metadata("design:type", String)
68
+ ], CreateCustomerAccountAddressReqDto.prototype, "streetType", void 0);
69
+ __decorate([
70
+ (0, class_validator_1.IsString)(),
71
+ (0, class_validator_1.IsNotEmpty)(),
72
+ (0, _validators_1.IsNotBlank)(),
73
+ (0, class_transformer_1.Expose)(),
74
+ __metadata("design:type", String)
75
+ ], CreateCustomerAccountAddressReqDto.prototype, "streetName", void 0);
76
+ __decorate([
77
+ (0, class_validator_1.IsString)(),
78
+ (0, class_validator_1.IsNotEmpty)(),
79
+ (0, _validators_1.IsNotBlank)(),
80
+ (0, class_transformer_1.Expose)(),
81
+ __metadata("design:type", String)
82
+ ], CreateCustomerAccountAddressReqDto.prototype, "streetNumber", void 0);
83
+ __decorate([
84
+ (0, class_validator_1.IsString)(),
85
+ (0, class_validator_1.IsOptional)(),
86
+ (0, class_transformer_1.Transform)(({ value }) => {
87
+ if (!value) {
88
+ return '';
89
+ }
90
+ return value;
91
+ }),
92
+ (0, class_transformer_1.Expose)(),
93
+ __metadata("design:type", String)
94
+ ], CreateCustomerAccountAddressReqDto.prototype, "block", void 0);
95
+ __decorate([
96
+ (0, class_validator_1.IsString)(),
97
+ (0, class_validator_1.IsOptional)(),
98
+ (0, class_transformer_1.Transform)(({ value }) => {
99
+ if (!value) {
100
+ return '';
101
+ }
102
+ return value;
103
+ }),
104
+ (0, class_transformer_1.Expose)(),
105
+ __metadata("design:type", String)
106
+ ], CreateCustomerAccountAddressReqDto.prototype, "floor", void 0);
107
+ __decorate([
108
+ (0, class_validator_1.IsString)(),
109
+ (0, class_validator_1.IsOptional)(),
110
+ (0, class_transformer_1.Transform)(({ value }) => {
111
+ if (!value) {
112
+ return '';
113
+ }
114
+ return value;
115
+ }),
116
+ (0, class_transformer_1.Expose)(),
117
+ __metadata("design:type", String)
118
+ ], CreateCustomerAccountAddressReqDto.prototype, "door", void 0);
119
+ __decorate([
120
+ (0, class_validator_1.IsString)(),
121
+ (0, class_validator_1.IsOptional)(),
122
+ (0, class_transformer_1.Transform)(({ value }) => {
123
+ if (!value) {
124
+ return '';
125
+ }
126
+ return value;
127
+ }),
128
+ (0, class_transformer_1.Expose)(),
129
+ __metadata("design:type", String)
130
+ ], CreateCustomerAccountAddressReqDto.prototype, "entrance", void 0);
@@ -0,0 +1,10 @@
1
+ export declare class CustomerAccountNoteDto {
2
+ id: string;
3
+ notes: string;
4
+ createdBy: string;
5
+ createdAt: string;
6
+ }
7
+ declare const CreateCustomerAccountNoteDto_base: import("@nestjs/common").Type<Pick<CustomerAccountNoteDto, "notes" | "createdBy">>;
8
+ export declare class CreateCustomerAccountNoteDto extends CreateCustomerAccountNoteDto_base {
9
+ }
10
+ export {};
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateCustomerAccountNoteDto = exports.CustomerAccountNoteDto = void 0;
4
+ const openapi = require("@nestjs/swagger");
5
+ const swagger_1 = require("@nestjs/swagger");
6
+ class CustomerAccountNoteDto {
7
+ static _OPENAPI_METADATA_FACTORY() {
8
+ return { id: { required: true, type: () => String }, notes: { required: true, type: () => String }, createdBy: { required: true, type: () => String }, createdAt: { required: true, type: () => String } };
9
+ }
10
+ }
11
+ exports.CustomerAccountNoteDto = CustomerAccountNoteDto;
12
+ class CreateCustomerAccountNoteDto extends (0, swagger_1.PickType)(CustomerAccountNoteDto, ['notes', 'createdBy']) {
13
+ static _OPENAPI_METADATA_FACTORY() {
14
+ return {};
15
+ }
16
+ }
17
+ exports.CreateCustomerAccountNoteDto = CreateCustomerAccountNoteDto;
@@ -1,4 +1,4 @@
1
- import { BpAccountPreferredLanguageType, BpAccountStateType, BpCustomerAccountBusinessSegmentType, BpCustomerAccountIdentificationType, BpCustomerAccountIndividualTitleType, BpCustomerAccountPreferredContactTimeType, BpPartyType, BpRelatedPartyRoleType, BpTimezoneType } from '../../bss/constants';
1
+ import { BpAccountPreferredLanguageType, BpAccountStateType, BpCustomerAccountBusinessSegmentType, BpCustomerAccountIdentificationType, BpCustomerAccountIndividualTitleType, BpCustomerAccountPreferredContactTimeType, BpPartyType, BpRelatedPartyRoleType, BpTimezoneType, BpCustomerAccountDocumentType } from '../../bss/constants';
2
2
  import { Builder } from '../../common/helpers/helpers';
3
3
  import { BusinessCustomerType, CustomerType } from '../../common/constants';
4
4
  import { CustomerAccountContactMediumType } from './customer.constants';
@@ -98,4 +98,10 @@ export declare class PatchCustomerAccountOrganizationDto extends PatchCustomerAc
98
98
  export declare class CustomerAccountOrganizationDtoBuilder extends Builder<CustomerAccountOrganizationDto> {
99
99
  setDefaults(): CustomerAccountOrganizationDto;
100
100
  }
101
+ export declare class CreateCustomerAccountDocumentDto {
102
+ fileName: string;
103
+ contentType: string;
104
+ type: BpCustomerAccountDocumentType;
105
+ comment?: string;
106
+ }
101
107
  export {};
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CustomerAccountOrganizationDtoBuilder = exports.PatchCustomerAccountOrganizationDto = exports.CreateCustomerAccountOrganizationDto = exports.CustomerAccountOrganizationDto = exports.CustomerAccountIndividualDtoBuilder = exports.PatchCustomerAccountIndividualDto = exports.CreateCustomerAccountIndividualDto = exports.CustomerAccountIndividualDto = exports.CustomerAccountPartyRelatedEntityRelationshipDto = exports.CustomerAccountContactMediumDto = exports.CustomerAccountIdentificationDtoBuilder = exports.CustomerAccountIdentificationDto = exports.CustomerAccountDtoBuilder = exports.PatchCustomerAccountDto = exports.CreateCustomerAccountDto = exports.CustomerAccountDto = exports.CreateCustomerAccountPartyRelatedPartyRelationshipDto = exports.CustomerAccountPartyRelatedPartyRelationshipDto = void 0;
3
+ exports.CreateCustomerAccountDocumentDto = exports.CustomerAccountOrganizationDtoBuilder = exports.PatchCustomerAccountOrganizationDto = exports.CreateCustomerAccountOrganizationDto = exports.CustomerAccountOrganizationDto = exports.CustomerAccountIndividualDtoBuilder = exports.PatchCustomerAccountIndividualDto = exports.CreateCustomerAccountIndividualDto = exports.CustomerAccountIndividualDto = exports.CustomerAccountPartyRelatedEntityRelationshipDto = exports.CustomerAccountContactMediumDto = exports.CustomerAccountIdentificationDtoBuilder = exports.CustomerAccountIdentificationDto = exports.CustomerAccountDtoBuilder = exports.PatchCustomerAccountDto = exports.CreateCustomerAccountDto = exports.CustomerAccountDto = exports.CreateCustomerAccountPartyRelatedPartyRelationshipDto = exports.CustomerAccountPartyRelatedPartyRelationshipDto = void 0;
4
4
  const constants_1 = require("../../bss/constants");
5
5
  const helpers_1 = require("../../common/helpers/helpers");
6
6
  const faker_1 = require("@faker-js/faker");
@@ -98,3 +98,6 @@ class CustomerAccountOrganizationDtoBuilder extends helpers_1.Builder {
98
98
  }
99
99
  }
100
100
  exports.CustomerAccountOrganizationDtoBuilder = CustomerAccountOrganizationDtoBuilder;
101
+ class CreateCustomerAccountDocumentDto {
102
+ }
103
+ exports.CreateCustomerAccountDocumentDto = CreateCustomerAccountDocumentDto;
@@ -1,11 +1,11 @@
1
1
  import { CustomerProductServiceDataDto, CustomerProductCharacteristicDto, CustomerProductServiceDto, CustomerProductActionType } from '../../bss/customer';
2
2
  import { ShoppingCartProductType } from '../../common/constants';
3
- import { ArsAddressDto } from '../../common/edge-bss';
4
3
  import { ShoppingCartParametersDto } from '../../bss/bearingpoint';
5
4
  import { CustomerProductInstanceAction } from './customer.constants';
6
5
  import { CustomerProductTransitionStep } from '../customer-product-multiple-transition-process';
7
6
  import { ApartmentDto } from '../address';
8
7
  import { MobileVisibilityType } from '../../bss/constants';
8
+ import { CustomerAccountAddressDto } from './customer-account-address.entity';
9
9
  export declare class CustomerBundleProductDto extends CustomerProductServiceDataDto {
10
10
  id: string;
11
11
  name: string;
@@ -51,7 +51,7 @@ export declare class CustomerProductModificationProductInstanceDto {
51
51
  instanceName?: string;
52
52
  action: CustomerProductInstanceAction;
53
53
  serviceCharacteristicName: string;
54
- serviceCharacteristicValue: string | ArsAddressDto;
54
+ serviceCharacteristicValue: string | CustomerAccountAddressDto;
55
55
  referenceProductId?: string;
56
56
  referenceProductName?: string;
57
57
  referenceInstanceAction?: CustomerProductInstanceAction;
@@ -1,4 +1,6 @@
1
1
  export * from './csvcustomer.entity';
2
+ export * from './customer-account-address.entity';
3
+ export * from './customer-account-note.entity';
2
4
  export * from './customer-account-summary.entity';
3
5
  export * from './customer-account.entitty';
4
6
  export * from './customer-billing-direct-debit-payment-method.entity';
@@ -15,6 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./csvcustomer.entity"), exports);
18
+ __exportStar(require("./customer-account-address.entity"), exports);
19
+ __exportStar(require("./customer-account-note.entity"), exports);
18
20
  __exportStar(require("./customer-account-summary.entity"), exports);
19
21
  __exportStar(require("./customer-account.entitty"), exports);
20
22
  __exportStar(require("./customer-billing-direct-debit-payment-method.entity"), exports);
@@ -1,4 +1,4 @@
1
- import { DocumentType } from '../../../bss/constants';
1
+ import { BpCustomerAccountDocumentType } from '../../../bss/constants';
2
2
  import { CustomerType } from '../../../common/constants';
3
3
  import { ShoppingCartSummaryBundleProductResDto, ShoppingCartSummaryCharacteristicResDto, ShoppingCartSummaryPriceResDto } from '../../shopping-cart';
4
4
  export interface SaleProcessDocument {
@@ -7,7 +7,7 @@ export interface SaleProcessDocument {
7
7
  fileName: string;
8
8
  contentType?: string;
9
9
  buffer?: Buffer;
10
- type: DocumentType;
10
+ type: BpCustomerAccountDocumentType;
11
11
  comment?: string;
12
12
  }
13
13
  export declare class DashboardFilterDto {
@@ -9,10 +9,10 @@ export declare class UserAuthWorkgroupDto {
9
9
  created?: AuditFieldsDto;
10
10
  updated?: AuditFieldsDto;
11
11
  }
12
- declare const CreateUserAuthWorkgroupDto_base: import("@nestjs/common").Type<Pick<UserAuthWorkgroupDto, "workgroupId" | "authId" | "created">>;
12
+ declare const CreateUserAuthWorkgroupDto_base: import("@nestjs/common").Type<Pick<UserAuthWorkgroupDto, "created" | "workgroupId" | "authId">>;
13
13
  export declare class CreateUserAuthWorkgroupDto extends CreateUserAuthWorkgroupDto_base {
14
14
  }
15
- declare const CreateUserAuthWorkgroupByWorkgroupNameDto_base: import("@nestjs/common").Type<Pick<UserAuthWorkgroupDto, "authId" | "created">>;
15
+ declare const CreateUserAuthWorkgroupByWorkgroupNameDto_base: import("@nestjs/common").Type<Pick<UserAuthWorkgroupDto, "created" | "authId">>;
16
16
  export declare class CreateUserAuthWorkgroupByWorkgroupNameDto extends CreateUserAuthWorkgroupByWorkgroupNameDto_base {
17
17
  workgroupName: string;
18
18
  }
@@ -40,7 +40,7 @@ export declare class UserAuthDto {
40
40
  created?: AuditFieldsDto;
41
41
  updated?: AuditFieldsDto;
42
42
  }
43
- declare const CreateUserAuthDto_base: import("@nestjs/common").Type<Pick<UserAuthDto, "username" | "active" | "role" | "tenants" | "created">>;
43
+ declare const CreateUserAuthDto_base: import("@nestjs/common").Type<Pick<UserAuthDto, "username" | "active" | "role" | "created" | "tenants">>;
44
44
  export declare class CreateUserAuthDto extends CreateUserAuthDto_base {
45
45
  }
46
46
  declare const PatchUserAuthDto_base: import("@nestjs/common").Type<Partial<Pick<UserAuthDto, keyof UserAuthDto>>>;