@springtree/eva-services-core-management 3.0.0-beta.32 → 3.0.0-beta.33
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.
- package/lib/eva-services-core-management.d.ts +101 -0
- package/lib/eva-services-core-management.d.ts.map +1 -1
- package/lib/eva-services-core-management.js.map +1 -1
- package/lib/eva-services-core-management.services.d.ts +25 -1
- package/lib/eva-services-core-management.services.d.ts.map +1 -1
- package/lib/eva-services-core-management.services.js +24 -0
- package/lib/eva-services-core-management.services.js.map +1 -1
- package/package.json +3 -3
|
@@ -1498,6 +1498,30 @@ export interface CreateCompanyResponse {
|
|
|
1498
1498
|
Metadata?: ResponseMessageMetadata;
|
|
1499
1499
|
}
|
|
1500
1500
|
/**
|
|
1501
|
+
* Creates a new company associated with the organization unit type
|
|
1502
|
+
*/
|
|
1503
|
+
export interface CreateOrganizationUnitCompany {
|
|
1504
|
+
BillingAddress?: AddressesAddressDataDto;
|
|
1505
|
+
EmailAddress?: string;
|
|
1506
|
+
FiscalID?: string;
|
|
1507
|
+
Name: string;
|
|
1508
|
+
PhoneNumber?: string;
|
|
1509
|
+
RegistrationCountryID?: string;
|
|
1510
|
+
RegistrationCountrySubdivisionID?: string;
|
|
1511
|
+
RegistrationNumber?: string;
|
|
1512
|
+
Representative?: string;
|
|
1513
|
+
ShippingAddress?: AddressesAddressDataDto;
|
|
1514
|
+
TaxRegistrationNumber?: string;
|
|
1515
|
+
}
|
|
1516
|
+
export interface CreateOrganizationUnitCompanyResponse {
|
|
1517
|
+
Error?: ServiceError;
|
|
1518
|
+
/**
|
|
1519
|
+
* Entity type: Company
|
|
1520
|
+
*/
|
|
1521
|
+
ID: string;
|
|
1522
|
+
Metadata?: ResponseMessageMetadata;
|
|
1523
|
+
}
|
|
1524
|
+
/**
|
|
1501
1525
|
* Deletes a Company. If a Company is still in use by Users or OrganizationUnits this service will return an error.
|
|
1502
1526
|
*/
|
|
1503
1527
|
export interface DeleteCompany {
|
|
@@ -1554,6 +1578,34 @@ export interface GetCompanyResponse {
|
|
|
1554
1578
|
WasteDisposalNumber?: string;
|
|
1555
1579
|
}
|
|
1556
1580
|
/**
|
|
1581
|
+
* GetOrganizationUnitCompany
|
|
1582
|
+
*/
|
|
1583
|
+
export interface GetOrganizationUnitCompany {
|
|
1584
|
+
/**
|
|
1585
|
+
* Entity type: Company
|
|
1586
|
+
*/
|
|
1587
|
+
ID: string;
|
|
1588
|
+
}
|
|
1589
|
+
export interface GetOrganizationUnitCompanyResponse {
|
|
1590
|
+
BillingAddress?: AddressesAddressDto;
|
|
1591
|
+
EmailAddress?: string;
|
|
1592
|
+
Error?: ServiceError;
|
|
1593
|
+
FiscalID?: string;
|
|
1594
|
+
/**
|
|
1595
|
+
* Entity type: Company
|
|
1596
|
+
*/
|
|
1597
|
+
ID: string;
|
|
1598
|
+
Metadata?: ResponseMessageMetadata;
|
|
1599
|
+
Name: string;
|
|
1600
|
+
PhoneNumber?: string;
|
|
1601
|
+
RegistrationCountryID?: string;
|
|
1602
|
+
RegistrationCountrySubdivisionID?: string;
|
|
1603
|
+
RegistrationNumber?: string;
|
|
1604
|
+
Representative?: string;
|
|
1605
|
+
ShippingAddress?: AddressesAddressDto;
|
|
1606
|
+
TaxRegistrationNumber?: string;
|
|
1607
|
+
}
|
|
1608
|
+
/**
|
|
1557
1609
|
* List Companies, optionally filtered.
|
|
1558
1610
|
*/
|
|
1559
1611
|
export interface ListCompanies {
|
|
@@ -1721,6 +1773,26 @@ export interface UpdateCompany {
|
|
|
1721
1773
|
VisitorsAddress?: AddressesAddressDataDto;
|
|
1722
1774
|
WasteDisposalNumber?: string | null;
|
|
1723
1775
|
}
|
|
1776
|
+
/**
|
|
1777
|
+
* Updates the details of companies associated with the organization unit type.
|
|
1778
|
+
*/
|
|
1779
|
+
export interface UpdateOrganizationUnitCompany {
|
|
1780
|
+
BillingAddress?: AddressesAddressDataDto;
|
|
1781
|
+
EmailAddress?: string | null;
|
|
1782
|
+
FiscalID?: string | null;
|
|
1783
|
+
/**
|
|
1784
|
+
* Entity type: Company
|
|
1785
|
+
*/
|
|
1786
|
+
ID: string;
|
|
1787
|
+
Name?: string | null;
|
|
1788
|
+
PhoneNumber?: string | null;
|
|
1789
|
+
RegistrationCountryID?: string | null;
|
|
1790
|
+
RegistrationCountrySubdivisionID?: string | null;
|
|
1791
|
+
RegistrationNumber?: string | null;
|
|
1792
|
+
Representative?: string | null;
|
|
1793
|
+
ShippingAddress?: AddressesAddressDataDto;
|
|
1794
|
+
TaxRegistrationNumber?: string | null;
|
|
1795
|
+
}
|
|
1724
1796
|
export interface ValidateCompany {
|
|
1725
1797
|
AccountHolderName?: string;
|
|
1726
1798
|
BIC?: string;
|
|
@@ -7497,6 +7569,29 @@ export interface DeleteMessageTemplate {
|
|
|
7497
7569
|
*/
|
|
7498
7570
|
ID: string;
|
|
7499
7571
|
}
|
|
7572
|
+
/**
|
|
7573
|
+
* Duplicate an existing MessageTemplate
|
|
7574
|
+
*/
|
|
7575
|
+
export interface DuplicateMessageTemplate {
|
|
7576
|
+
/**
|
|
7577
|
+
* Entity type: MessageTemplate
|
|
7578
|
+
*/
|
|
7579
|
+
ID: string;
|
|
7580
|
+
Layout?: string | null;
|
|
7581
|
+
/**
|
|
7582
|
+
* Entity type: OrganizationUnit
|
|
7583
|
+
*/
|
|
7584
|
+
OrganizationUnitID?: string | null;
|
|
7585
|
+
}
|
|
7586
|
+
export interface DuplicateMessageTemplateResponse {
|
|
7587
|
+
Error?: ServiceError;
|
|
7588
|
+
/**
|
|
7589
|
+
* Entity type: MessageTemplate
|
|
7590
|
+
*/
|
|
7591
|
+
ID: string;
|
|
7592
|
+
Metadata?: ResponseMessageMetadata;
|
|
7593
|
+
Type: DataModelsMessageTemplateTypes;
|
|
7594
|
+
}
|
|
7500
7595
|
export interface GetDataModelForTemplateHandler {
|
|
7501
7596
|
Handler?: string;
|
|
7502
7597
|
}
|
|
@@ -7657,6 +7752,7 @@ export interface MessageTemplatesListMessageTemplatesResponse_MessageTemplateDto
|
|
|
7657
7752
|
OrganizationUnitID?: string;
|
|
7658
7753
|
OrganizationUnitName?: string;
|
|
7659
7754
|
PaperProperties?: DataModelsPaperProperties;
|
|
7755
|
+
ReadOnly: boolean;
|
|
7660
7756
|
Type: DataModelsMessageTemplateTypes;
|
|
7661
7757
|
}
|
|
7662
7758
|
export interface ListTemplateHandlers {
|
|
@@ -14226,8 +14322,13 @@ export interface GetSubscriptionHandlers {
|
|
|
14226
14322
|
export interface GetSubscriptionHandlersResponse {
|
|
14227
14323
|
Error?: ServiceError;
|
|
14228
14324
|
Handlers: string[];
|
|
14325
|
+
HandlersDetails: UsersGetSubscriptionHandlersResponse_Handler[];
|
|
14229
14326
|
Metadata?: ResponseMessageMetadata;
|
|
14230
14327
|
}
|
|
14328
|
+
export interface UsersGetSubscriptionHandlersResponse_Handler {
|
|
14329
|
+
AllowRequestConfirmation: boolean;
|
|
14330
|
+
Name?: string;
|
|
14331
|
+
}
|
|
14231
14332
|
/**
|
|
14232
14333
|
* Gets all the SubscriptionOrganizationUnitSets and returns a paged response.
|
|
14233
14334
|
*/
|