@silexpert/core 0.4.202 → 0.4.204
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/es/api/resources/Mobile.d.ts +1 -1
- package/es/api/resources/Mobile.js +2 -2
- package/es/api/resources/Mobile.js.map +1 -1
- package/es/api/resources/Transaction.d.ts +1 -0
- package/es/api/resources/Transaction.d.ts.map +1 -1
- package/es/api/resources/Transaction.js +3 -0
- package/es/api/resources/Transaction.js.map +1 -1
- package/es/types/Enum/SurveyType.d.ts +2 -1
- package/es/types/Enum/SurveyType.d.ts.map +1 -1
- package/es/types/Enum/SurveyType.js +1 -0
- package/es/types/Enum/SurveyType.js.map +1 -1
- package/es/types/Interface/api/mail/QueryPaginatedMail.d.ts.map +1 -1
- package/es/types/Interface/api/mail/QueryPaginatedMail.js +2 -3
- package/es/types/Interface/api/mail/QueryPaginatedMail.js.map +1 -1
- package/es/types/Interface/api/mobile/QueryMobileMigration.d.ts +5 -0
- package/es/types/Interface/api/mobile/QueryMobileMigration.d.ts.map +1 -0
- package/es/types/Interface/api/mobile/QueryMobileMigration.js +26 -0
- package/es/types/Interface/api/mobile/QueryMobileMigration.js.map +1 -0
- package/es/types/Interface/api/revision/QueryRevisionSearchEntries.d.ts +7 -1
- package/es/types/Interface/api/revision/QueryRevisionSearchEntries.d.ts.map +1 -1
- package/es/types/Interface/api/revision/QueryRevisionSearchEntries.js +43 -4
- package/es/types/Interface/api/revision/QueryRevisionSearchEntries.js.map +1 -1
- package/es/types/Interface/api/taxDeadline/ReadTaxDeadline.d.ts +2 -0
- package/es/types/Interface/api/taxDeadline/ReadTaxDeadline.d.ts.map +1 -1
- package/es/types/Interface/api/taxDeadline/ReadTaxDeadline.js.map +1 -1
- package/es/types/Interface/models/IMobile.d.ts +1 -0
- package/es/types/Interface/models/IMobile.d.ts.map +1 -1
- package/es/types/Interface/models/IMobile.js.map +1 -1
- package/es/types/index.d.ts +2 -1
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +2 -1
- package/es/types/index.js.map +1 -1
- package/js/api/resources/Mobile.js +2 -2
- package/js/api/resources/Mobile.js.map +1 -1
- package/js/api/resources/Transaction.js +4 -0
- package/js/api/resources/Transaction.js.map +1 -1
- package/js/types/Enum/SurveyType.js +1 -0
- package/js/types/Enum/SurveyType.js.map +1 -1
- package/js/types/Interface/api/mail/QueryPaginatedMail.js +3 -1
- package/js/types/Interface/api/mail/QueryPaginatedMail.js.map +1 -1
- package/js/types/Interface/api/mobile/QueryMobileMigration.js +35 -0
- package/js/types/Interface/api/mobile/QueryMobileMigration.js.map +1 -0
- package/js/types/Interface/api/revision/QueryRevisionSearchEntries.js +17 -1
- package/js/types/Interface/api/revision/QueryRevisionSearchEntries.js.map +1 -1
- package/js/types/Interface/api/taxDeadline/ReadTaxDeadline.js.map +1 -1
- package/js/types/index.js +18 -6
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Mobile.ts +2 -2
- package/ts/api/resources/Transaction.ts +4 -0
- package/ts/types/Enum/SurveyType.ts +1 -0
- package/ts/types/Interface/api/mail/QueryPaginatedMail.ts +2 -3
- package/ts/types/Interface/api/mobile/QueryMobileMigration.ts +14 -0
- package/ts/types/Interface/api/revision/QueryRevisionSearchEntries.ts +40 -4
- package/ts/types/Interface/api/taxDeadline/ReadTaxDeadline.ts +2 -0
- package/ts/types/Interface/models/IMobile.ts +1 -0
- package/ts/types/index.ts +2 -1
package/ts/types/index.ts
CHANGED
|
@@ -701,10 +701,11 @@ export * from './Interface/api/checklist/Read';
|
|
|
701
701
|
export * from './Interface/api/checklist/Query';
|
|
702
702
|
export * from './Interface/api/checklist/Update';
|
|
703
703
|
export * from './Interface/api/notification/CreateNotification';
|
|
704
|
+
export * from './Interface/api/mobile/UpdateMobile';
|
|
705
|
+
export * from './Interface/api/mobile/QueryMobileMigration';
|
|
704
706
|
|
|
705
707
|
// Enums types
|
|
706
708
|
export * from './Interface/enum/Util';
|
|
707
|
-
export * from './Interface/api/mobile/UpdateMobile';
|
|
708
709
|
|
|
709
710
|
export * from '../utils/cerfa';
|
|
710
711
|
export * from '../utils/checklist';
|