@veloceapps/api 1.0.0
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/README.md +7 -0
- package/bundles/veloce-api.umd.js +2117 -0
- package/bundles/veloce-api.umd.js.map +1 -0
- package/esm2015/index.js +14 -0
- package/esm2015/lib/api.module.js +59 -0
- package/esm2015/lib/services/configuration-api.service.js +90 -0
- package/esm2015/lib/services/configuration-settings-api.service.js +69 -0
- package/esm2015/lib/services/context-api.service.js +26 -0
- package/esm2015/lib/services/document-attachment-api.service.js +65 -0
- package/esm2015/lib/services/document-templates-api.service.js +278 -0
- package/esm2015/lib/services/price-api.service.js +86 -0
- package/esm2015/lib/services/product-model-api.service.js +232 -0
- package/esm2015/lib/services/quote-api.service.js +36 -0
- package/esm2015/lib/services/ramp-api.service.js +42 -0
- package/esm2015/lib/services/salesforce-api.service.js +51 -0
- package/esm2015/lib/services/scripts-api.service.js +75 -0
- package/esm2015/lib/services/ui-templates-api.service.js +262 -0
- package/esm2015/lib/types/attribute-dto.types.js +21 -0
- package/esm2015/lib/types/charge-group-item-dto.types.js +45 -0
- package/esm2015/lib/types/charge-item-dto.types.js +74 -0
- package/esm2015/lib/types/clone-request.types.js +2 -0
- package/esm2015/lib/types/configuration-settings-dto.types.js +22 -0
- package/esm2015/lib/types/domain-type-dto.types.js +27 -0
- package/esm2015/lib/types/line-item-dto.types.js +93 -0
- package/esm2015/lib/types/port-domain-dto.types.js +22 -0
- package/esm2015/lib/types/price-adjustment-dto.types.js +15 -0
- package/esm2015/lib/types/price-dto.types.js +25 -0
- package/esm2015/lib/types/recommended-price-dto.types.js +23 -0
- package/esm2015/lib/types/ui-template-dto.types.js +2 -0
- package/esm2015/lib/utils/ui-template.utils.js +17 -0
- package/esm2015/veloce-api.js +5 -0
- package/fesm2015/veloce-api.js +1686 -0
- package/fesm2015/veloce-api.js.map +1 -0
- package/index.d.ts +14 -0
- package/lib/api.module.d.ts +7 -0
- package/lib/services/configuration-api.service.d.ts +18 -0
- package/lib/services/configuration-settings-api.service.d.ts +17 -0
- package/lib/services/context-api.service.d.ts +11 -0
- package/lib/services/document-attachment-api.service.d.ts +15 -0
- package/lib/services/document-templates-api.service.d.ts +39 -0
- package/lib/services/price-api.service.d.ts +16 -0
- package/lib/services/product-model-api.service.d.ts +30 -0
- package/lib/services/quote-api.service.d.ts +14 -0
- package/lib/services/ramp-api.service.d.ts +12 -0
- package/lib/services/salesforce-api.service.d.ts +17 -0
- package/lib/services/scripts-api.service.d.ts +21 -0
- package/lib/services/ui-templates-api.service.d.ts +47 -0
- package/lib/types/attribute-dto.types.d.ts +11 -0
- package/lib/types/charge-group-item-dto.types.d.ts +24 -0
- package/lib/types/charge-item-dto.types.d.ts +39 -0
- package/lib/types/clone-request.types.d.ts +6 -0
- package/lib/types/configuration-settings-dto.types.d.ts +9 -0
- package/lib/types/domain-type-dto.types.d.ts +15 -0
- package/lib/types/line-item-dto.types.d.ts +50 -0
- package/lib/types/port-domain-dto.types.d.ts +13 -0
- package/lib/types/price-adjustment-dto.types.d.ts +8 -0
- package/lib/types/price-dto.types.d.ts +13 -0
- package/lib/types/recommended-price-dto.types.d.ts +12 -0
- package/lib/types/ui-template-dto.types.d.ts +10 -0
- package/lib/utils/ui-template.utils.d.ts +3 -0
- package/package.json +33 -0
- package/veloce-api.d.ts +5 -0