rcs-js 1.0.8 → 1.0.10
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/Client.d.ts +10 -126
- package/Client.js +15 -443
- package/README.md +30 -7
- package/api/client/requests/GetRcsFunctionalityRequest.d.ts +13 -0
- package/api/client/requests/index.d.ts +1 -5
- package/api/errors/ForbiddenError.d.ts +7 -0
- package/api/errors/{NotFoundError.js → ForbiddenError.js} +6 -6
- package/api/errors/index.d.ts +1 -1
- package/api/errors/index.js +1 -1
- package/api/index.d.ts +1 -0
- package/api/index.js +1 -0
- package/api/resources/company/client/Client.d.ts +96 -0
- package/api/resources/company/client/Client.js +289 -0
- package/api/resources/company/client/index.d.ts +1 -0
- package/api/resources/company/client/index.js +17 -0
- package/{dist/api/client/requests/GetCompanyRequest.d.ts → api/resources/company/client/requests/CompanyGetRequest.d.ts} +1 -1
- package/api/{client/requests/RegisterCompanyRequest.d.ts → resources/company/client/requests/CompanyRegisterRequest.d.ts} +2 -2
- package/{dist/api/client/requests/UpdateCompanyRequest.d.ts → api/resources/company/client/requests/CompanyUpdateRequest.d.ts} +2 -2
- package/api/resources/company/client/requests/index.d.ts +3 -0
- package/api/resources/company/client/requests/index.js +2 -0
- package/api/resources/company/index.d.ts +2 -0
- package/api/resources/company/index.js +18 -0
- package/api/resources/company/types/CompanyRegisterResponse.d.ts +7 -0
- package/api/resources/company/types/CompanyRegisterResponseBrand.d.ts +7 -0
- package/api/resources/company/types/CompanyUpdateResponse.d.ts +7 -0
- package/api/resources/company/types/CompanyUpdateResponseBrand.d.ts +7 -0
- package/api/resources/company/types/index.d.ts +4 -0
- package/api/resources/company/types/index.js +20 -0
- package/api/resources/index.d.ts +6 -0
- package/api/resources/index.js +35 -0
- package/api/resources/send/client/Client.d.ts +86 -0
- package/api/resources/send/client/Client.js +277 -0
- package/api/resources/send/client/index.d.ts +1 -0
- package/api/resources/send/client/index.js +17 -0
- package/api/resources/send/client/requests/Rcs.d.ts +43 -0
- package/api/resources/send/client/requests/SendMmsRequest.d.ts +22 -0
- package/api/resources/send/client/requests/SendSmsRequest.d.ts +19 -0
- package/api/resources/send/client/requests/index.d.ts +3 -0
- package/api/resources/send/client/requests/index.js +2 -0
- package/api/resources/send/index.d.ts +2 -0
- package/api/resources/send/index.js +18 -0
- package/api/resources/send/types/SendMmsResponse.d.ts +9 -0
- package/api/resources/send/types/SendRcsResponse.d.ts +9 -0
- package/api/resources/send/types/SendSmsResponse.d.ts +9 -0
- package/api/resources/send/types/index.d.ts +3 -0
- package/api/resources/send/types/index.js +19 -0
- package/api/types/Action.d.ts +20 -1
- package/api/types/ActionLatLong.d.ts +12 -0
- package/api/types/ActionType.d.ts +15 -0
- package/api/types/ActionType.js +14 -0
- package/api/types/BadRequestErrorBody.d.ts +1 -3
- package/api/types/Card.d.ts +5 -7
- package/api/types/{NotFoundErrorBody.d.ts → ForbiddenErrorBody.d.ts} +2 -2
- package/api/types/InternalServerErrorBody.d.ts +1 -2
- package/api/types/RcsFunctionalities.d.ts +21 -0
- package/api/types/UnauthorizedErrorBody.d.ts +1 -1
- package/api/types/index.d.ts +6 -37
- package/api/types/index.js +6 -37
- package/dist/Client.d.ts +10 -126
- package/dist/Client.js +15 -443
- package/dist/api/client/requests/GetRcsFunctionalityRequest.d.ts +13 -0
- package/dist/api/client/requests/index.d.ts +1 -5
- package/dist/api/errors/ForbiddenError.d.ts +7 -0
- package/dist/api/errors/{NotFoundError.js → ForbiddenError.js} +6 -6
- package/dist/api/errors/index.d.ts +1 -1
- package/dist/api/errors/index.js +1 -1
- package/dist/api/index.d.ts +1 -0
- package/dist/api/index.js +1 -0
- package/dist/api/resources/company/client/Client.d.ts +96 -0
- package/dist/api/resources/company/client/Client.js +289 -0
- package/dist/api/resources/company/client/index.d.ts +1 -0
- package/dist/api/resources/company/client/index.js +17 -0
- package/{api/client/requests/GetCompanyRequest.d.ts → dist/api/resources/company/client/requests/CompanyGetRequest.d.ts} +1 -1
- package/dist/api/{client/requests/RegisterCompanyRequest.d.ts → resources/company/client/requests/CompanyRegisterRequest.d.ts} +2 -2
- package/{api/client/requests/UpdateCompanyRequest.d.ts → dist/api/resources/company/client/requests/CompanyUpdateRequest.d.ts} +2 -2
- package/dist/api/resources/company/client/requests/index.d.ts +3 -0
- package/dist/api/resources/company/client/requests/index.js +2 -0
- package/dist/api/resources/company/index.d.ts +2 -0
- package/dist/api/resources/company/index.js +18 -0
- package/dist/api/resources/company/types/CompanyRegisterResponse.d.ts +7 -0
- package/dist/api/resources/company/types/CompanyRegisterResponseBrand.d.ts +7 -0
- package/dist/api/resources/company/types/CompanyUpdateResponse.d.ts +7 -0
- package/dist/api/resources/company/types/CompanyUpdateResponseBrand.d.ts +7 -0
- package/dist/api/resources/company/types/index.d.ts +4 -0
- package/dist/api/resources/company/types/index.js +20 -0
- package/dist/api/resources/index.d.ts +6 -0
- package/dist/api/resources/index.js +35 -0
- package/dist/api/resources/send/client/Client.d.ts +86 -0
- package/dist/api/resources/send/client/Client.js +277 -0
- package/dist/api/resources/send/client/index.d.ts +1 -0
- package/dist/api/resources/send/client/index.js +17 -0
- package/dist/api/resources/send/client/requests/Rcs.d.ts +43 -0
- package/dist/api/resources/send/client/requests/SendMmsRequest.d.ts +22 -0
- package/dist/api/resources/send/client/requests/SendSmsRequest.d.ts +19 -0
- package/dist/api/resources/send/client/requests/index.d.ts +3 -0
- package/dist/api/resources/send/client/requests/index.js +2 -0
- package/dist/api/resources/send/index.d.ts +2 -0
- package/dist/api/resources/send/index.js +18 -0
- package/dist/api/resources/send/types/SendMmsResponse.d.ts +9 -0
- package/dist/api/resources/send/types/SendRcsResponse.d.ts +9 -0
- package/dist/api/resources/send/types/SendSmsResponse.d.ts +9 -0
- package/dist/api/resources/send/types/index.d.ts +3 -0
- package/dist/api/resources/send/types/index.js +19 -0
- package/dist/api/types/Action.d.ts +20 -1
- package/dist/api/types/ActionLatLong.d.ts +12 -0
- package/dist/api/types/ActionType.d.ts +15 -0
- package/dist/api/types/ActionType.js +14 -0
- package/dist/api/types/BadRequestErrorBody.d.ts +1 -3
- package/dist/api/types/Card.d.ts +5 -7
- package/dist/api/types/{NotFoundErrorBody.d.ts → ForbiddenErrorBody.d.ts} +2 -2
- package/dist/api/types/InternalServerErrorBody.d.ts +1 -2
- package/dist/api/types/RcsFunctionalities.d.ts +21 -0
- package/dist/api/types/UnauthorizedErrorBody.d.ts +1 -1
- package/dist/api/types/index.d.ts +6 -37
- package/dist/api/types/index.js +6 -37
- package/dist/serialization/index.d.ts +1 -1
- package/dist/serialization/index.js +1 -1
- package/dist/serialization/resources/company/client/get.d.ts +11 -0
- package/dist/serialization/{client/getCompany.js → resources/company/client/get.js} +2 -2
- package/dist/serialization/resources/company/client/index.d.ts +2 -0
- package/{serialization → dist/serialization/resources/company}/client/index.js +2 -2
- package/dist/serialization/resources/company/client/requests/CompanyRegisterRequest.d.ts +19 -0
- package/{serialization/client/requests/RegisterCompanyRequest.js → dist/serialization/resources/company/client/requests/CompanyRegisterRequest.js} +7 -7
- package/dist/serialization/resources/company/client/requests/CompanyUpdateRequest.d.ts +20 -0
- package/dist/serialization/{client/requests/UpdateCompanyRequest.js → resources/company/client/requests/CompanyUpdateRequest.js} +7 -7
- package/dist/serialization/resources/company/client/requests/index.d.ts +2 -0
- package/dist/serialization/resources/company/client/requests/index.js +7 -0
- package/dist/serialization/resources/company/index.d.ts +2 -0
- package/dist/serialization/resources/company/index.js +18 -0
- package/dist/serialization/resources/company/types/CompanyRegisterResponse.d.ts +13 -0
- package/dist/serialization/resources/company/types/CompanyRegisterResponse.js +34 -0
- package/dist/serialization/resources/company/types/CompanyRegisterResponseBrand.d.ts +13 -0
- package/dist/serialization/resources/company/types/CompanyRegisterResponseBrand.js +34 -0
- package/dist/serialization/resources/company/types/CompanyUpdateResponse.d.ts +13 -0
- package/dist/serialization/{types/CheckRcsCapabilityResponse.js → resources/company/types/CompanyUpdateResponse.js} +5 -5
- package/dist/serialization/resources/company/types/CompanyUpdateResponseBrand.d.ts +13 -0
- package/dist/serialization/{client/requests/UpdateSettingsRequest.js → resources/company/types/CompanyUpdateResponseBrand.js} +5 -4
- package/dist/serialization/resources/company/types/index.d.ts +4 -0
- package/dist/serialization/resources/company/types/index.js +20 -0
- package/dist/serialization/resources/index.d.ts +6 -0
- package/dist/serialization/resources/index.js +35 -0
- package/dist/serialization/resources/send/client/index.d.ts +1 -0
- package/dist/serialization/resources/send/client/index.js +17 -0
- package/dist/serialization/resources/send/client/requests/Rcs.d.ts +19 -0
- package/dist/serialization/{types/SmsMessage.js → resources/send/client/requests/Rcs.js} +10 -4
- package/dist/serialization/resources/send/client/requests/SendMmsRequest.d.ts +15 -0
- package/dist/serialization/resources/send/client/requests/SendMmsRequest.js +36 -0
- package/dist/serialization/resources/send/client/requests/SendSmsRequest.d.ts +14 -0
- package/{serialization/types/BasicRcsMessage.js → dist/serialization/resources/send/client/requests/SendSmsRequest.js} +5 -3
- package/dist/serialization/resources/send/client/requests/index.d.ts +3 -0
- package/dist/serialization/resources/send/client/requests/index.js +9 -0
- package/dist/serialization/resources/send/index.d.ts +2 -0
- package/dist/serialization/resources/send/index.js +18 -0
- package/dist/serialization/resources/send/types/SendMmsResponse.d.ts +13 -0
- package/dist/serialization/resources/send/types/SendMmsResponse.js +34 -0
- package/dist/serialization/resources/send/types/SendRcsResponse.d.ts +13 -0
- package/dist/serialization/resources/send/types/SendRcsResponse.js +34 -0
- package/dist/serialization/resources/send/types/SendSmsResponse.d.ts +13 -0
- package/dist/serialization/resources/send/types/SendSmsResponse.js +34 -0
- package/dist/serialization/resources/send/types/index.d.ts +3 -0
- package/dist/serialization/resources/send/types/index.js +19 -0
- package/dist/serialization/types/Action.d.ts +14 -7
- package/dist/serialization/types/Action.js +13 -6
- package/dist/serialization/types/{LatLng.d.ts → ActionLatLong.d.ts} +4 -4
- package/dist/serialization/types/{NotFoundErrorBody.js → ActionLatLong.js} +4 -3
- package/dist/serialization/types/ActionType.d.ts +10 -0
- package/dist/serialization/types/{CardStyleImageAlignment.js → ActionType.js} +2 -2
- package/dist/serialization/types/BadRequestErrorBody.d.ts +1 -3
- package/dist/serialization/types/BadRequestErrorBody.js +1 -3
- package/dist/serialization/types/Card.d.ts +1 -3
- package/dist/serialization/types/Card.js +1 -3
- package/dist/serialization/types/{NotFoundErrorBody.d.ts → ForbiddenErrorBody.d.ts} +3 -3
- package/dist/serialization/types/{GetAccountNumberResponse.js → ForbiddenErrorBody.js} +3 -3
- package/dist/serialization/types/InternalServerErrorBody.d.ts +1 -2
- package/dist/serialization/types/InternalServerErrorBody.js +1 -2
- package/dist/serialization/types/RcsFunctionalities.d.ts +19 -0
- package/dist/serialization/types/{BadRequestErrorBodyError.js → RcsFunctionalities.js} +10 -7
- package/dist/serialization/types/UnauthorizedErrorBody.d.ts +1 -1
- package/dist/serialization/types/UnauthorizedErrorBody.js +1 -1
- package/dist/serialization/types/index.d.ts +6 -37
- package/dist/serialization/types/index.js +6 -37
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +426 -5
- package/serialization/index.d.ts +1 -1
- package/serialization/index.js +1 -1
- package/serialization/resources/company/client/get.d.ts +11 -0
- package/serialization/{client/getCompany.js → resources/company/client/get.js} +2 -2
- package/serialization/resources/company/client/index.d.ts +2 -0
- package/{dist/serialization → serialization/resources/company}/client/index.js +2 -2
- package/serialization/resources/company/client/requests/CompanyRegisterRequest.d.ts +19 -0
- package/{dist/serialization/client/requests/RegisterCompanyRequest.js → serialization/resources/company/client/requests/CompanyRegisterRequest.js} +7 -7
- package/serialization/resources/company/client/requests/CompanyUpdateRequest.d.ts +20 -0
- package/serialization/{client/requests/UpdateCompanyRequest.js → resources/company/client/requests/CompanyUpdateRequest.js} +7 -7
- package/serialization/resources/company/client/requests/index.d.ts +2 -0
- package/serialization/resources/company/client/requests/index.js +7 -0
- package/serialization/resources/company/index.d.ts +2 -0
- package/serialization/resources/company/index.js +18 -0
- package/serialization/resources/company/types/CompanyRegisterResponse.d.ts +13 -0
- package/serialization/resources/company/types/CompanyRegisterResponse.js +34 -0
- package/serialization/resources/company/types/CompanyRegisterResponseBrand.d.ts +13 -0
- package/serialization/resources/company/types/CompanyRegisterResponseBrand.js +34 -0
- package/serialization/resources/company/types/CompanyUpdateResponse.d.ts +13 -0
- package/{dist/serialization/types/Call.js → serialization/resources/company/types/CompanyUpdateResponse.js} +5 -6
- package/serialization/resources/company/types/CompanyUpdateResponseBrand.d.ts +13 -0
- package/serialization/resources/company/types/CompanyUpdateResponseBrand.js +34 -0
- package/serialization/resources/company/types/index.d.ts +4 -0
- package/serialization/resources/company/types/index.js +20 -0
- package/serialization/resources/index.d.ts +6 -0
- package/serialization/resources/index.js +35 -0
- package/serialization/resources/send/client/index.d.ts +1 -0
- package/serialization/resources/send/client/index.js +17 -0
- package/serialization/resources/send/client/requests/Rcs.d.ts +19 -0
- package/serialization/{types/SmsMessage.js → resources/send/client/requests/Rcs.js} +10 -4
- package/serialization/resources/send/client/requests/SendMmsRequest.d.ts +15 -0
- package/serialization/resources/send/client/requests/SendMmsRequest.js +36 -0
- package/serialization/resources/send/client/requests/SendSmsRequest.d.ts +14 -0
- package/serialization/resources/send/client/requests/SendSmsRequest.js +35 -0
- package/serialization/resources/send/client/requests/index.d.ts +3 -0
- package/serialization/resources/send/client/requests/index.js +9 -0
- package/serialization/resources/send/index.d.ts +2 -0
- package/serialization/resources/send/index.js +18 -0
- package/serialization/resources/send/types/SendMmsResponse.d.ts +13 -0
- package/serialization/resources/send/types/SendMmsResponse.js +34 -0
- package/serialization/resources/send/types/SendRcsResponse.d.ts +13 -0
- package/serialization/resources/send/types/SendRcsResponse.js +34 -0
- package/serialization/resources/send/types/SendSmsResponse.d.ts +13 -0
- package/serialization/resources/send/types/SendSmsResponse.js +34 -0
- package/serialization/resources/send/types/index.d.ts +3 -0
- package/serialization/resources/send/types/index.js +19 -0
- package/serialization/types/Action.d.ts +14 -7
- package/serialization/types/Action.js +13 -6
- package/{dist/serialization/types/Call.d.ts → serialization/types/ActionLatLong.d.ts} +4 -5
- package/{dist/serialization/types/BasicRcsMessage.js → serialization/types/ActionLatLong.js} +4 -3
- package/serialization/types/ActionType.d.ts +10 -0
- package/{dist/serialization/types/CardStyleMediaHeight.js → serialization/types/ActionType.js} +2 -2
- package/serialization/types/BadRequestErrorBody.d.ts +1 -3
- package/serialization/types/BadRequestErrorBody.js +1 -3
- package/serialization/types/Card.d.ts +1 -3
- package/serialization/types/Card.js +1 -3
- package/{dist/serialization/types/BasicRcsMessage.d.ts → serialization/types/ForbiddenErrorBody.d.ts} +3 -3
- package/{dist/serialization/types/LatLng.js → serialization/types/ForbiddenErrorBody.js} +3 -4
- package/serialization/types/InternalServerErrorBody.d.ts +1 -2
- package/serialization/types/InternalServerErrorBody.js +1 -2
- package/serialization/types/RcsFunctionalities.d.ts +19 -0
- package/{dist/serialization/types/BasicRcs.js → serialization/types/RcsFunctionalities.js} +10 -9
- package/serialization/types/UnauthorizedErrorBody.d.ts +1 -1
- package/serialization/types/UnauthorizedErrorBody.js +1 -1
- package/serialization/types/index.d.ts +6 -37
- package/serialization/types/index.js +6 -37
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/client/requests/CheckRcsCapabilityRequest.d.ts +0 -21
- package/api/client/requests/UpdateSettingsRequest.d.ts +0 -13
- package/api/errors/NotFoundError.d.ts +0 -8
- package/api/types/BadRequestErrorBodyError.d.ts +0 -10
- package/api/types/BasicRcs.d.ts +0 -13
- package/api/types/BasicRcsMessage.d.ts +0 -10
- package/api/types/Call.d.ts +0 -11
- package/api/types/CardRcs.d.ts +0 -12
- package/api/types/CardRcsMessage.d.ts +0 -13
- package/api/types/CardStyle.d.ts +0 -16
- package/api/types/CardStyleImageAlignment.d.ts +0 -11
- package/api/types/CardStyleImageAlignment.js +0 -10
- package/api/types/CardStyleMediaHeight.d.ts +0 -12
- package/api/types/CardStyleMediaHeight.js +0 -11
- package/api/types/CardStyleOrientation.d.ts +0 -11
- package/api/types/CardStyleOrientation.js +0 -10
- package/api/types/CardStyleWidth.d.ts +0 -11
- package/api/types/CardStyleWidth.js +0 -10
- package/api/types/CarouselRcs.d.ts +0 -12
- package/api/types/CarouselRcsMessage.d.ts +0 -13
- package/api/types/CheckRcsCapabilityResponse.d.ts +0 -7
- package/api/types/Event.d.ts +0 -17
- package/api/types/GetAccountNumberResponse.d.ts +0 -7
- package/api/types/LatLng.d.ts +0 -12
- package/api/types/MediaRcs.d.ts +0 -12
- package/api/types/MediaRcsMessage.d.ts +0 -14
- package/api/types/MediaType.d.ts +0 -14
- package/api/types/MediaType.js +0 -13
- package/api/types/PhoneNumber.d.ts +0 -7
- package/api/types/Postback.d.ts +0 -13
- package/api/types/RegisterCompanyResponse.d.ts +0 -8
- package/api/types/RegisterCompanyResponseBrand.d.ts +0 -7
- package/api/types/SendMessageRequest.d.ts +0 -5
- package/api/types/SendMessageResponse.d.ts +0 -7
- package/api/types/ShareLocation.d.ts +0 -9
- package/api/types/Sms.d.ts +0 -12
- package/api/types/SmsMessage.d.ts +0 -12
- package/api/types/UpdateCompanyResponse.d.ts +0 -8
- package/api/types/UpdateCompanyResponseBrand.d.ts +0 -7
- package/api/types/UpdateSettingsResponse.d.ts +0 -6
- package/api/types/Url.d.ts +0 -11
- package/api/types/ViewLocation.d.ts +0 -13
- package/api/types/ViewLocation.js +0 -5
- package/dist/api/client/requests/CheckRcsCapabilityRequest.d.ts +0 -21
- package/dist/api/client/requests/CheckRcsCapabilityRequest.js +0 -5
- package/dist/api/client/requests/GetCompanyRequest.js +0 -5
- package/dist/api/client/requests/RegisterCompanyRequest.js +0 -5
- package/dist/api/client/requests/UpdateCompanyRequest.js +0 -5
- package/dist/api/client/requests/UpdateSettingsRequest.d.ts +0 -13
- package/dist/api/client/requests/UpdateSettingsRequest.js +0 -5
- package/dist/api/errors/NotFoundError.d.ts +0 -8
- package/dist/api/types/BadRequestErrorBodyError.d.ts +0 -10
- package/dist/api/types/BadRequestErrorBodyError.js +0 -5
- package/dist/api/types/BasicRcs.d.ts +0 -13
- package/dist/api/types/BasicRcs.js +0 -5
- package/dist/api/types/BasicRcsMessage.d.ts +0 -10
- package/dist/api/types/BasicRcsMessage.js +0 -5
- package/dist/api/types/Call.d.ts +0 -11
- package/dist/api/types/Call.js +0 -5
- package/dist/api/types/CardRcs.d.ts +0 -12
- package/dist/api/types/CardRcs.js +0 -5
- package/dist/api/types/CardRcsMessage.d.ts +0 -13
- package/dist/api/types/CardRcsMessage.js +0 -5
- package/dist/api/types/CardStyle.d.ts +0 -16
- package/dist/api/types/CardStyle.js +0 -5
- package/dist/api/types/CardStyleImageAlignment.d.ts +0 -11
- package/dist/api/types/CardStyleImageAlignment.js +0 -10
- package/dist/api/types/CardStyleMediaHeight.d.ts +0 -12
- package/dist/api/types/CardStyleMediaHeight.js +0 -11
- package/dist/api/types/CardStyleOrientation.d.ts +0 -11
- package/dist/api/types/CardStyleOrientation.js +0 -10
- package/dist/api/types/CardStyleWidth.d.ts +0 -11
- package/dist/api/types/CardStyleWidth.js +0 -10
- package/dist/api/types/CarouselRcs.d.ts +0 -12
- package/dist/api/types/CarouselRcs.js +0 -5
- package/dist/api/types/CarouselRcsMessage.d.ts +0 -13
- package/dist/api/types/CarouselRcsMessage.js +0 -5
- package/dist/api/types/CheckRcsCapabilityResponse.d.ts +0 -7
- package/dist/api/types/CheckRcsCapabilityResponse.js +0 -5
- package/dist/api/types/Event.d.ts +0 -17
- package/dist/api/types/Event.js +0 -5
- package/dist/api/types/GetAccountNumberResponse.d.ts +0 -7
- package/dist/api/types/GetAccountNumberResponse.js +0 -5
- package/dist/api/types/LatLng.d.ts +0 -12
- package/dist/api/types/LatLng.js +0 -5
- package/dist/api/types/MediaRcs.d.ts +0 -12
- package/dist/api/types/MediaRcs.js +0 -5
- package/dist/api/types/MediaRcsMessage.d.ts +0 -14
- package/dist/api/types/MediaRcsMessage.js +0 -5
- package/dist/api/types/MediaType.d.ts +0 -14
- package/dist/api/types/MediaType.js +0 -13
- package/dist/api/types/NotFoundErrorBody.js +0 -5
- package/dist/api/types/PhoneNumber.d.ts +0 -7
- package/dist/api/types/PhoneNumber.js +0 -5
- package/dist/api/types/Postback.d.ts +0 -13
- package/dist/api/types/Postback.js +0 -5
- package/dist/api/types/RegisterCompanyResponse.d.ts +0 -8
- package/dist/api/types/RegisterCompanyResponse.js +0 -5
- package/dist/api/types/RegisterCompanyResponseBrand.d.ts +0 -7
- package/dist/api/types/RegisterCompanyResponseBrand.js +0 -5
- package/dist/api/types/SendMessageRequest.d.ts +0 -5
- package/dist/api/types/SendMessageRequest.js +0 -5
- package/dist/api/types/SendMessageResponse.d.ts +0 -7
- package/dist/api/types/SendMessageResponse.js +0 -5
- package/dist/api/types/ShareLocation.d.ts +0 -9
- package/dist/api/types/ShareLocation.js +0 -5
- package/dist/api/types/Sms.d.ts +0 -12
- package/dist/api/types/Sms.js +0 -5
- package/dist/api/types/SmsMessage.d.ts +0 -12
- package/dist/api/types/SmsMessage.js +0 -5
- package/dist/api/types/UpdateCompanyResponse.d.ts +0 -8
- package/dist/api/types/UpdateCompanyResponse.js +0 -5
- package/dist/api/types/UpdateCompanyResponseBrand.d.ts +0 -7
- package/dist/api/types/UpdateCompanyResponseBrand.js +0 -5
- package/dist/api/types/UpdateSettingsResponse.d.ts +0 -6
- package/dist/api/types/UpdateSettingsResponse.js +0 -5
- package/dist/api/types/Url.d.ts +0 -11
- package/dist/api/types/Url.js +0 -5
- package/dist/api/types/ViewLocation.d.ts +0 -13
- package/dist/api/types/ViewLocation.js +0 -5
- package/dist/serialization/client/getCompany.d.ts +0 -11
- package/dist/serialization/client/index.d.ts +0 -2
- package/dist/serialization/client/requests/RegisterCompanyRequest.d.ts +0 -19
- package/dist/serialization/client/requests/UpdateCompanyRequest.d.ts +0 -20
- package/dist/serialization/client/requests/UpdateSettingsRequest.d.ts +0 -12
- package/dist/serialization/client/requests/index.d.ts +0 -3
- package/dist/serialization/client/requests/index.js +0 -9
- package/dist/serialization/types/BadRequestErrorBodyError.d.ts +0 -16
- package/dist/serialization/types/BasicRcs.d.ts +0 -18
- package/dist/serialization/types/CardRcs.d.ts +0 -16
- package/dist/serialization/types/CardRcs.js +0 -37
- package/dist/serialization/types/CardRcsMessage.d.ts +0 -15
- package/dist/serialization/types/CardRcsMessage.js +0 -36
- package/dist/serialization/types/CardStyle.d.ts +0 -20
- package/dist/serialization/types/CardStyle.js +0 -41
- package/dist/serialization/types/CardStyleImageAlignment.d.ts +0 -10
- package/dist/serialization/types/CardStyleMediaHeight.d.ts +0 -10
- package/dist/serialization/types/CardStyleOrientation.d.ts +0 -10
- package/dist/serialization/types/CardStyleOrientation.js +0 -31
- package/dist/serialization/types/CardStyleWidth.d.ts +0 -10
- package/dist/serialization/types/CardStyleWidth.js +0 -31
- package/dist/serialization/types/CarouselRcs.d.ts +0 -16
- package/dist/serialization/types/CarouselRcs.js +0 -37
- package/dist/serialization/types/CarouselRcsMessage.d.ts +0 -15
- package/dist/serialization/types/CarouselRcsMessage.js +0 -36
- package/dist/serialization/types/CheckRcsCapabilityResponse.d.ts +0 -13
- package/dist/serialization/types/Event.d.ts +0 -17
- package/dist/serialization/types/Event.js +0 -38
- package/dist/serialization/types/GetAccountNumberResponse.d.ts +0 -12
- package/dist/serialization/types/MediaRcs.d.ts +0 -16
- package/dist/serialization/types/MediaRcs.js +0 -37
- package/dist/serialization/types/MediaRcsMessage.d.ts +0 -16
- package/dist/serialization/types/MediaRcsMessage.js +0 -37
- package/dist/serialization/types/MediaType.d.ts +0 -10
- package/dist/serialization/types/MediaType.js +0 -31
- package/dist/serialization/types/PhoneNumber.d.ts +0 -10
- package/dist/serialization/types/PhoneNumber.js +0 -31
- package/dist/serialization/types/Postback.d.ts +0 -15
- package/dist/serialization/types/Postback.js +0 -36
- package/dist/serialization/types/RegisterCompanyResponse.d.ts +0 -14
- package/dist/serialization/types/RegisterCompanyResponse.js +0 -35
- package/dist/serialization/types/RegisterCompanyResponseBrand.d.ts +0 -13
- package/dist/serialization/types/RegisterCompanyResponseBrand.js +0 -34
- package/dist/serialization/types/SendMessageRequest.d.ts +0 -15
- package/dist/serialization/types/SendMessageRequest.js +0 -36
- package/dist/serialization/types/SendMessageResponse.d.ts +0 -12
- package/dist/serialization/types/SendMessageResponse.js +0 -33
- package/dist/serialization/types/ShareLocation.d.ts +0 -13
- package/dist/serialization/types/ShareLocation.js +0 -34
- package/dist/serialization/types/Sms.d.ts +0 -16
- package/dist/serialization/types/Sms.js +0 -37
- package/dist/serialization/types/SmsMessage.d.ts +0 -13
- package/dist/serialization/types/UpdateCompanyResponse.d.ts +0 -14
- package/dist/serialization/types/UpdateCompanyResponse.js +0 -35
- package/dist/serialization/types/UpdateCompanyResponseBrand.d.ts +0 -13
- package/dist/serialization/types/UpdateCompanyResponseBrand.js +0 -34
- package/dist/serialization/types/UpdateSettingsResponse.d.ts +0 -12
- package/dist/serialization/types/UpdateSettingsResponse.js +0 -33
- package/dist/serialization/types/Url.d.ts +0 -14
- package/dist/serialization/types/Url.js +0 -35
- package/dist/serialization/types/ViewLocation.d.ts +0 -16
- package/dist/serialization/types/ViewLocation.js +0 -37
- package/serialization/client/getCompany.d.ts +0 -11
- package/serialization/client/index.d.ts +0 -2
- package/serialization/client/requests/RegisterCompanyRequest.d.ts +0 -19
- package/serialization/client/requests/UpdateCompanyRequest.d.ts +0 -20
- package/serialization/client/requests/UpdateSettingsRequest.d.ts +0 -12
- package/serialization/client/requests/UpdateSettingsRequest.js +0 -33
- package/serialization/client/requests/index.d.ts +0 -3
- package/serialization/client/requests/index.js +0 -9
- package/serialization/types/BadRequestErrorBodyError.d.ts +0 -16
- package/serialization/types/BadRequestErrorBodyError.js +0 -37
- package/serialization/types/BasicRcs.d.ts +0 -18
- package/serialization/types/BasicRcs.js +0 -39
- package/serialization/types/BasicRcsMessage.d.ts +0 -12
- package/serialization/types/Call.d.ts +0 -14
- package/serialization/types/Call.js +0 -35
- package/serialization/types/CardRcs.d.ts +0 -16
- package/serialization/types/CardRcs.js +0 -37
- package/serialization/types/CardRcsMessage.d.ts +0 -15
- package/serialization/types/CardRcsMessage.js +0 -36
- package/serialization/types/CardStyle.d.ts +0 -20
- package/serialization/types/CardStyle.js +0 -41
- package/serialization/types/CardStyleImageAlignment.d.ts +0 -10
- package/serialization/types/CardStyleImageAlignment.js +0 -31
- package/serialization/types/CardStyleMediaHeight.d.ts +0 -10
- package/serialization/types/CardStyleMediaHeight.js +0 -31
- package/serialization/types/CardStyleOrientation.d.ts +0 -10
- package/serialization/types/CardStyleOrientation.js +0 -31
- package/serialization/types/CardStyleWidth.d.ts +0 -10
- package/serialization/types/CardStyleWidth.js +0 -31
- package/serialization/types/CarouselRcs.d.ts +0 -16
- package/serialization/types/CarouselRcs.js +0 -37
- package/serialization/types/CarouselRcsMessage.d.ts +0 -15
- package/serialization/types/CarouselRcsMessage.js +0 -36
- package/serialization/types/CheckRcsCapabilityResponse.d.ts +0 -13
- package/serialization/types/CheckRcsCapabilityResponse.js +0 -34
- package/serialization/types/Event.d.ts +0 -17
- package/serialization/types/Event.js +0 -38
- package/serialization/types/GetAccountNumberResponse.d.ts +0 -12
- package/serialization/types/GetAccountNumberResponse.js +0 -33
- package/serialization/types/LatLng.d.ts +0 -13
- package/serialization/types/LatLng.js +0 -34
- package/serialization/types/MediaRcs.d.ts +0 -16
- package/serialization/types/MediaRcs.js +0 -37
- package/serialization/types/MediaRcsMessage.d.ts +0 -16
- package/serialization/types/MediaRcsMessage.js +0 -37
- package/serialization/types/MediaType.d.ts +0 -10
- package/serialization/types/MediaType.js +0 -31
- package/serialization/types/NotFoundErrorBody.d.ts +0 -12
- package/serialization/types/NotFoundErrorBody.js +0 -33
- package/serialization/types/PhoneNumber.d.ts +0 -10
- package/serialization/types/PhoneNumber.js +0 -31
- package/serialization/types/Postback.d.ts +0 -15
- package/serialization/types/Postback.js +0 -36
- package/serialization/types/RegisterCompanyResponse.d.ts +0 -14
- package/serialization/types/RegisterCompanyResponse.js +0 -35
- package/serialization/types/RegisterCompanyResponseBrand.d.ts +0 -13
- package/serialization/types/RegisterCompanyResponseBrand.js +0 -34
- package/serialization/types/SendMessageRequest.d.ts +0 -15
- package/serialization/types/SendMessageRequest.js +0 -36
- package/serialization/types/SendMessageResponse.d.ts +0 -12
- package/serialization/types/SendMessageResponse.js +0 -33
- package/serialization/types/ShareLocation.d.ts +0 -13
- package/serialization/types/ShareLocation.js +0 -34
- package/serialization/types/Sms.d.ts +0 -16
- package/serialization/types/Sms.js +0 -37
- package/serialization/types/SmsMessage.d.ts +0 -13
- package/serialization/types/UpdateCompanyResponse.d.ts +0 -14
- package/serialization/types/UpdateCompanyResponse.js +0 -35
- package/serialization/types/UpdateCompanyResponseBrand.d.ts +0 -13
- package/serialization/types/UpdateCompanyResponseBrand.js +0 -34
- package/serialization/types/UpdateSettingsResponse.d.ts +0 -12
- package/serialization/types/UpdateSettingsResponse.js +0 -33
- package/serialization/types/Url.d.ts +0 -14
- package/serialization/types/Url.js +0 -35
- package/serialization/types/ViewLocation.d.ts +0 -16
- package/serialization/types/ViewLocation.js +0 -37
- /package/api/client/requests/{CheckRcsCapabilityRequest.js → GetRcsFunctionalityRequest.js} +0 -0
- /package/api/{client/requests/GetCompanyRequest.js → resources/company/client/requests/CompanyGetRequest.js} +0 -0
- /package/api/{client/requests/RegisterCompanyRequest.js → resources/company/client/requests/CompanyRegisterRequest.js} +0 -0
- /package/api/{client/requests/UpdateCompanyRequest.js → resources/company/client/requests/CompanyUpdateRequest.js} +0 -0
- /package/api/{client/requests/UpdateSettingsRequest.js → resources/company/types/CompanyRegisterResponse.js} +0 -0
- /package/api/{types/BadRequestErrorBodyError.js → resources/company/types/CompanyRegisterResponseBrand.js} +0 -0
- /package/api/{types/BasicRcs.js → resources/company/types/CompanyUpdateResponse.js} +0 -0
- /package/api/{types/BasicRcsMessage.js → resources/company/types/CompanyUpdateResponseBrand.js} +0 -0
- /package/api/{types/Call.js → resources/send/client/requests/Rcs.js} +0 -0
- /package/api/{types/CardRcs.js → resources/send/client/requests/SendMmsRequest.js} +0 -0
- /package/api/{types/CardRcsMessage.js → resources/send/client/requests/SendSmsRequest.js} +0 -0
- /package/api/{types/CardStyle.js → resources/send/types/SendMmsResponse.js} +0 -0
- /package/api/{types/CarouselRcs.js → resources/send/types/SendRcsResponse.js} +0 -0
- /package/api/{types/CarouselRcsMessage.js → resources/send/types/SendSmsResponse.js} +0 -0
- /package/api/types/{CheckRcsCapabilityResponse.js → ActionLatLong.js} +0 -0
- /package/api/types/{Event.js → ForbiddenErrorBody.js} +0 -0
- /package/api/types/{GetAccountNumberResponse.js → RcsFunctionalities.js} +0 -0
- /package/{api/types/LatLng.js → dist/api/client/requests/GetRcsFunctionalityRequest.js} +0 -0
- /package/{api/types/MediaRcs.js → dist/api/resources/company/client/requests/CompanyGetRequest.js} +0 -0
- /package/{api/types/MediaRcsMessage.js → dist/api/resources/company/client/requests/CompanyRegisterRequest.js} +0 -0
- /package/{api/types/NotFoundErrorBody.js → dist/api/resources/company/client/requests/CompanyUpdateRequest.js} +0 -0
- /package/{api/types/PhoneNumber.js → dist/api/resources/company/types/CompanyRegisterResponse.js} +0 -0
- /package/{api/types/Postback.js → dist/api/resources/company/types/CompanyRegisterResponseBrand.js} +0 -0
- /package/{api/types/RegisterCompanyResponse.js → dist/api/resources/company/types/CompanyUpdateResponse.js} +0 -0
- /package/{api/types/RegisterCompanyResponseBrand.js → dist/api/resources/company/types/CompanyUpdateResponseBrand.js} +0 -0
- /package/{api/types/SendMessageRequest.js → dist/api/resources/send/client/requests/Rcs.js} +0 -0
- /package/{api/types/SendMessageResponse.js → dist/api/resources/send/client/requests/SendMmsRequest.js} +0 -0
- /package/{api/types/ShareLocation.js → dist/api/resources/send/client/requests/SendSmsRequest.js} +0 -0
- /package/{api/types/Sms.js → dist/api/resources/send/types/SendMmsResponse.js} +0 -0
- /package/{api/types/SmsMessage.js → dist/api/resources/send/types/SendRcsResponse.js} +0 -0
- /package/{api/types/UpdateCompanyResponse.js → dist/api/resources/send/types/SendSmsResponse.js} +0 -0
- /package/{api/types/UpdateCompanyResponseBrand.js → dist/api/types/ActionLatLong.js} +0 -0
- /package/{api/types/UpdateSettingsResponse.js → dist/api/types/ForbiddenErrorBody.js} +0 -0
- /package/{api/types/Url.js → dist/api/types/RcsFunctionalities.js} +0 -0
package/api/types/Action.d.ts
CHANGED
|
@@ -2,4 +2,23 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as Pinnacle from "../index";
|
|
5
|
-
export
|
|
5
|
+
export interface Action {
|
|
6
|
+
/** Title of the action (must be less than 25 characters). */
|
|
7
|
+
title?: string;
|
|
8
|
+
/** Type of action for the button. 'openUrl' opens a URL, 'call' dials a phone number, 'trigger' sends the predefined payload to the webhook when pressed, 'requestLocation' requests the user's location, 'scheduleEvent' creates a calendar event, 'sendLocation' sends a location. */
|
|
9
|
+
type?: Pinnacle.ActionType;
|
|
10
|
+
/** Optional payload associated with the action. This payload encodes the respective fields for the action type and is required. For 'openUrl', the payload is the URL to open. For 'call', the payload is the phone number to dial. For 'trigger', the payload is the predefined payload to send to the webhook. */
|
|
11
|
+
payload?: string;
|
|
12
|
+
/** Optional metadata. This is sent alongside the payload to the webhook. */
|
|
13
|
+
metadata?: string;
|
|
14
|
+
/** Start time for events. Required for 'scheduleEvent'. */
|
|
15
|
+
eventStartTime?: string;
|
|
16
|
+
/** End time for events. Required for 'scheduleEvent'. */
|
|
17
|
+
eventEndTime?: string;
|
|
18
|
+
/** Event title. Required for 'scheduleEvent'. */
|
|
19
|
+
eventTitle?: string;
|
|
20
|
+
/** Optional event description. */
|
|
21
|
+
eventDescription?: string;
|
|
22
|
+
/** Latitude and longitude coordinates. Required for 'sendLocation'. */
|
|
23
|
+
latLong?: Pinnacle.ActionLatLong;
|
|
24
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Latitude and longitude coordinates. Required for 'sendLocation'.
|
|
6
|
+
*/
|
|
7
|
+
export interface ActionLatLong {
|
|
8
|
+
/** Latitude value. */
|
|
9
|
+
lat?: number;
|
|
10
|
+
/** Longitude value. */
|
|
11
|
+
lng?: number;
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Type of action for the button. 'openUrl' opens a URL, 'call' dials a phone number, 'trigger' sends the predefined payload to the webhook when pressed, 'requestLocation' requests the user's location, 'scheduleEvent' creates a calendar event, 'sendLocation' sends a location.
|
|
6
|
+
*/
|
|
7
|
+
export declare type ActionType = "openUrl" | "call" | "trigger" | "requestLocation" | "scheduleEvent" | "sendLocation";
|
|
8
|
+
export declare const ActionType: {
|
|
9
|
+
readonly OpenUrl: "openUrl";
|
|
10
|
+
readonly Call: "call";
|
|
11
|
+
readonly Trigger: "trigger";
|
|
12
|
+
readonly RequestLocation: "requestLocation";
|
|
13
|
+
readonly ScheduleEvent: "scheduleEvent";
|
|
14
|
+
readonly SendLocation: "sendLocation";
|
|
15
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ActionType = void 0;
|
|
7
|
+
exports.ActionType = {
|
|
8
|
+
OpenUrl: "openUrl",
|
|
9
|
+
Call: "call",
|
|
10
|
+
Trigger: "trigger",
|
|
11
|
+
RequestLocation: "requestLocation",
|
|
12
|
+
ScheduleEvent: "scheduleEvent",
|
|
13
|
+
SendLocation: "sendLocation",
|
|
14
|
+
};
|
package/api/types/Card.d.ts
CHANGED
|
@@ -3,14 +3,12 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import * as Pinnacle from "../index";
|
|
5
5
|
export interface Card {
|
|
6
|
-
/** The title of the card */
|
|
6
|
+
/** The title of the card. */
|
|
7
7
|
title: string;
|
|
8
|
-
/**
|
|
8
|
+
/** Optional subtitle for the card. */
|
|
9
9
|
subtitle?: string;
|
|
10
|
-
/**
|
|
11
|
-
|
|
12
|
-
/**
|
|
10
|
+
/** Optional media URL displayed with the card. */
|
|
11
|
+
mediaUrl?: string;
|
|
12
|
+
/** Optional list of buttons on the card (max 4). */
|
|
13
13
|
buttons?: Pinnacle.Action[];
|
|
14
|
-
/** The style of the card */
|
|
15
|
-
cardStyle?: Pinnacle.CardStyle;
|
|
16
14
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
export interface RcsFunctionalities {
|
|
5
|
+
/** Indicates if RCS is enabled. */
|
|
6
|
+
isEnabled: boolean;
|
|
7
|
+
/** Indicates if standalone rich cards are supported. */
|
|
8
|
+
standaloneRichCard: boolean;
|
|
9
|
+
/** Indicates if carousel rich cards are supported. */
|
|
10
|
+
carouselRichCard: boolean;
|
|
11
|
+
/** Indicates if buttons to create a calendar event are supported. */
|
|
12
|
+
createCalendarEventAction: boolean;
|
|
13
|
+
/** Indicates if dial buttons are supported. */
|
|
14
|
+
dialAction: boolean;
|
|
15
|
+
/** Indicates if open URL buttons are supported. */
|
|
16
|
+
openUrlAction: boolean;
|
|
17
|
+
/** Indicates if share location buttons are supported. */
|
|
18
|
+
shareLocationAction: boolean;
|
|
19
|
+
/** Indicates if view location buttons are supported. */
|
|
20
|
+
viewLocationAction: boolean;
|
|
21
|
+
}
|
package/api/types/index.d.ts
CHANGED
|
@@ -1,43 +1,8 @@
|
|
|
1
|
-
export * from "./CheckRcsCapabilityResponse";
|
|
2
1
|
export * from "./BadRequestErrorBody";
|
|
3
2
|
export * from "./UnauthorizedErrorBody";
|
|
4
3
|
export * from "./InternalServerErrorBody";
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./SendMessageRequest";
|
|
8
|
-
export * from "./SendMessageResponse";
|
|
9
|
-
export * from "./NotFoundErrorBody";
|
|
10
|
-
export * from "./RegisterCompanyResponseBrand";
|
|
11
|
-
export * from "./RegisterCompanyResponse";
|
|
12
|
-
export * from "./BadRequestErrorBodyError";
|
|
13
|
-
export * from "./UpdateCompanyResponseBrand";
|
|
14
|
-
export * from "./UpdateCompanyResponse";
|
|
15
|
-
export * from "./PhoneNumber";
|
|
16
|
-
export * from "./Url";
|
|
17
|
-
export * from "./Call";
|
|
18
|
-
export * from "./Postback";
|
|
19
|
-
export * from "./ShareLocation";
|
|
20
|
-
export * from "./LatLng";
|
|
21
|
-
export * from "./ViewLocation";
|
|
22
|
-
export * from "./Event";
|
|
23
|
-
export * from "./Action";
|
|
24
|
-
export * from "./SmsMessage";
|
|
25
|
-
export * from "./Sms";
|
|
26
|
-
export * from "./BasicRcsMessage";
|
|
27
|
-
export * from "./BasicRcs";
|
|
28
|
-
export * from "./MediaType";
|
|
29
|
-
export * from "./MediaRcsMessage";
|
|
30
|
-
export * from "./MediaRcs";
|
|
31
|
-
export * from "./CardStyleImageAlignment";
|
|
32
|
-
export * from "./CardStyleMediaHeight";
|
|
33
|
-
export * from "./CardStyleWidth";
|
|
34
|
-
export * from "./CardStyleOrientation";
|
|
35
|
-
export * from "./CardStyle";
|
|
36
|
-
export * from "./Card";
|
|
37
|
-
export * from "./CardRcsMessage";
|
|
38
|
-
export * from "./CardRcs";
|
|
39
|
-
export * from "./CarouselRcsMessage";
|
|
40
|
-
export * from "./CarouselRcs";
|
|
4
|
+
export * from "./ForbiddenErrorBody";
|
|
5
|
+
export * from "./RcsFunctionalities";
|
|
41
6
|
export * from "./CompanyAdditionalWebsitesItem";
|
|
42
7
|
export * from "./CompanyAdditionalEmailsItem";
|
|
43
8
|
export * from "./CompanyAdditionalPhoneNumbersItem";
|
|
@@ -49,3 +14,7 @@ export * from "./AdditionalWebsite";
|
|
|
49
14
|
export * from "./AdditionalPhoneNumber";
|
|
50
15
|
export * from "./AdditionalEmail";
|
|
51
16
|
export * from "./Optionals";
|
|
17
|
+
export * from "./Card";
|
|
18
|
+
export * from "./ActionType";
|
|
19
|
+
export * from "./ActionLatLong";
|
|
20
|
+
export * from "./Action";
|
package/api/types/index.js
CHANGED
|
@@ -14,46 +14,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./CheckRcsCapabilityResponse"), exports);
|
|
18
17
|
__exportStar(require("./BadRequestErrorBody"), exports);
|
|
19
18
|
__exportStar(require("./UnauthorizedErrorBody"), exports);
|
|
20
19
|
__exportStar(require("./InternalServerErrorBody"), exports);
|
|
21
|
-
__exportStar(require("./
|
|
22
|
-
__exportStar(require("./
|
|
23
|
-
__exportStar(require("./SendMessageRequest"), exports);
|
|
24
|
-
__exportStar(require("./SendMessageResponse"), exports);
|
|
25
|
-
__exportStar(require("./NotFoundErrorBody"), exports);
|
|
26
|
-
__exportStar(require("./RegisterCompanyResponseBrand"), exports);
|
|
27
|
-
__exportStar(require("./RegisterCompanyResponse"), exports);
|
|
28
|
-
__exportStar(require("./BadRequestErrorBodyError"), exports);
|
|
29
|
-
__exportStar(require("./UpdateCompanyResponseBrand"), exports);
|
|
30
|
-
__exportStar(require("./UpdateCompanyResponse"), exports);
|
|
31
|
-
__exportStar(require("./PhoneNumber"), exports);
|
|
32
|
-
__exportStar(require("./Url"), exports);
|
|
33
|
-
__exportStar(require("./Call"), exports);
|
|
34
|
-
__exportStar(require("./Postback"), exports);
|
|
35
|
-
__exportStar(require("./ShareLocation"), exports);
|
|
36
|
-
__exportStar(require("./LatLng"), exports);
|
|
37
|
-
__exportStar(require("./ViewLocation"), exports);
|
|
38
|
-
__exportStar(require("./Event"), exports);
|
|
39
|
-
__exportStar(require("./Action"), exports);
|
|
40
|
-
__exportStar(require("./SmsMessage"), exports);
|
|
41
|
-
__exportStar(require("./Sms"), exports);
|
|
42
|
-
__exportStar(require("./BasicRcsMessage"), exports);
|
|
43
|
-
__exportStar(require("./BasicRcs"), exports);
|
|
44
|
-
__exportStar(require("./MediaType"), exports);
|
|
45
|
-
__exportStar(require("./MediaRcsMessage"), exports);
|
|
46
|
-
__exportStar(require("./MediaRcs"), exports);
|
|
47
|
-
__exportStar(require("./CardStyleImageAlignment"), exports);
|
|
48
|
-
__exportStar(require("./CardStyleMediaHeight"), exports);
|
|
49
|
-
__exportStar(require("./CardStyleWidth"), exports);
|
|
50
|
-
__exportStar(require("./CardStyleOrientation"), exports);
|
|
51
|
-
__exportStar(require("./CardStyle"), exports);
|
|
52
|
-
__exportStar(require("./Card"), exports);
|
|
53
|
-
__exportStar(require("./CardRcsMessage"), exports);
|
|
54
|
-
__exportStar(require("./CardRcs"), exports);
|
|
55
|
-
__exportStar(require("./CarouselRcsMessage"), exports);
|
|
56
|
-
__exportStar(require("./CarouselRcs"), exports);
|
|
20
|
+
__exportStar(require("./ForbiddenErrorBody"), exports);
|
|
21
|
+
__exportStar(require("./RcsFunctionalities"), exports);
|
|
57
22
|
__exportStar(require("./CompanyAdditionalWebsitesItem"), exports);
|
|
58
23
|
__exportStar(require("./CompanyAdditionalEmailsItem"), exports);
|
|
59
24
|
__exportStar(require("./CompanyAdditionalPhoneNumbersItem"), exports);
|
|
@@ -65,3 +30,7 @@ __exportStar(require("./AdditionalWebsite"), exports);
|
|
|
65
30
|
__exportStar(require("./AdditionalPhoneNumber"), exports);
|
|
66
31
|
__exportStar(require("./AdditionalEmail"), exports);
|
|
67
32
|
__exportStar(require("./Optionals"), exports);
|
|
33
|
+
__exportStar(require("./Card"), exports);
|
|
34
|
+
__exportStar(require("./ActionType"), exports);
|
|
35
|
+
__exportStar(require("./ActionLatLong"), exports);
|
|
36
|
+
__exportStar(require("./Action"), exports);
|
package/dist/Client.d.ts
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
import * as environments from "./environments";
|
|
5
5
|
import * as core from "./core";
|
|
6
6
|
import * as Pinnacle from "./api/index";
|
|
7
|
+
import { Company } from "./api/resources/company/client/Client";
|
|
8
|
+
import { Send } from "./api/resources/send/client/Client";
|
|
7
9
|
export declare namespace PinnacleClient {
|
|
8
10
|
interface Options {
|
|
9
11
|
environment?: core.Supplier<environments.PinnacleEnvironment | string>;
|
|
@@ -22,9 +24,9 @@ export declare class PinnacleClient {
|
|
|
22
24
|
protected readonly _options: PinnacleClient.Options;
|
|
23
25
|
constructor(_options: PinnacleClient.Options);
|
|
24
26
|
/**
|
|
25
|
-
*
|
|
27
|
+
* Retrieve the RCS functionality of a phone number. For example checks if a phone number can receive RCS message and if it can receive RCS carousels.
|
|
26
28
|
*
|
|
27
|
-
* @param {Pinnacle.
|
|
29
|
+
* @param {Pinnacle.GetRcsFunctionalityRequest} request
|
|
28
30
|
* @param {PinnacleClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
29
31
|
*
|
|
30
32
|
* @throws {@link Pinnacle.BadRequestError}
|
|
@@ -32,131 +34,13 @@ export declare class PinnacleClient {
|
|
|
32
34
|
* @throws {@link Pinnacle.InternalServerError}
|
|
33
35
|
*
|
|
34
36
|
* @example
|
|
35
|
-
* await client.
|
|
36
|
-
* phoneNumber: "phone_number"
|
|
37
|
-
* })
|
|
37
|
+
* await client.getRcsFunctionality()
|
|
38
38
|
*/
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
* @param {PinnacleClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
45
|
-
*
|
|
46
|
-
* @throws {@link Pinnacle.BadRequestError}
|
|
47
|
-
* @throws {@link Pinnacle.UnauthorizedError}
|
|
48
|
-
* @throws {@link Pinnacle.InternalServerError}
|
|
49
|
-
*
|
|
50
|
-
* @example
|
|
51
|
-
* await client.updateSettings({
|
|
52
|
-
* webhookUrl: "webhook_url"
|
|
53
|
-
* })
|
|
54
|
-
*/
|
|
55
|
-
updateSettings(request: Pinnacle.UpdateSettingsRequest, requestOptions?: PinnacleClient.RequestOptions): Promise<Pinnacle.UpdateSettingsResponse>;
|
|
56
|
-
/**
|
|
57
|
-
* Retrieve the phone number associated with the account.
|
|
58
|
-
*
|
|
59
|
-
* @param {PinnacleClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
60
|
-
*
|
|
61
|
-
* @throws {@link Pinnacle.UnauthorizedError}
|
|
62
|
-
* @throws {@link Pinnacle.InternalServerError}
|
|
63
|
-
*
|
|
64
|
-
* @example
|
|
65
|
-
* await client.getAccountNumber()
|
|
66
|
-
*/
|
|
67
|
-
getAccountNumber(requestOptions?: PinnacleClient.RequestOptions): Promise<Pinnacle.GetAccountNumberResponse>;
|
|
68
|
-
/**
|
|
69
|
-
* Send a SMS or RCS message to a phone number
|
|
70
|
-
*
|
|
71
|
-
* @param {Pinnacle.SendMessageRequest} request
|
|
72
|
-
* @param {PinnacleClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
73
|
-
*
|
|
74
|
-
* @throws {@link Pinnacle.BadRequestError}
|
|
75
|
-
* @throws {@link Pinnacle.UnauthorizedError}
|
|
76
|
-
* @throws {@link Pinnacle.InternalServerError}
|
|
77
|
-
*
|
|
78
|
-
* @example
|
|
79
|
-
* await client.sendMessage({
|
|
80
|
-
* phoneNumber: "phone_number",
|
|
81
|
-
* messageType: "card",
|
|
82
|
-
* message: {
|
|
83
|
-
* cards: [{
|
|
84
|
-
* title: "title"
|
|
85
|
-
* }]
|
|
86
|
-
* }
|
|
87
|
-
* })
|
|
88
|
-
*/
|
|
89
|
-
sendMessage(request: Pinnacle.SendMessageRequest, requestOptions?: PinnacleClient.RequestOptions): Promise<Pinnacle.SendMessageResponse>;
|
|
90
|
-
/**
|
|
91
|
-
* Retrieve the company's information (i.e. approval status, company name, etc.). Search by company ID or company name.
|
|
92
|
-
*
|
|
93
|
-
* @param {Pinnacle.GetCompanyRequest} request
|
|
94
|
-
* @param {PinnacleClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
95
|
-
*
|
|
96
|
-
* @throws {@link Pinnacle.BadRequestError}
|
|
97
|
-
* @throws {@link Pinnacle.UnauthorizedError}
|
|
98
|
-
* @throws {@link Pinnacle.NotFoundError}
|
|
99
|
-
* @throws {@link Pinnacle.InternalServerError}
|
|
100
|
-
*
|
|
101
|
-
* @example
|
|
102
|
-
* await client.getCompany()
|
|
103
|
-
*/
|
|
104
|
-
getCompany(request?: Pinnacle.GetCompanyRequest, requestOptions?: PinnacleClient.RequestOptions): Promise<Pinnacle.Company[]>;
|
|
105
|
-
/**
|
|
106
|
-
* Register a company for RCS with the Pinnacle platform
|
|
107
|
-
*
|
|
108
|
-
* @param {Pinnacle.RegisterCompanyRequest} request
|
|
109
|
-
* @param {PinnacleClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
110
|
-
*
|
|
111
|
-
* @throws {@link Pinnacle.BadRequestError}
|
|
112
|
-
* @throws {@link Pinnacle.UnauthorizedError}
|
|
113
|
-
* @throws {@link Pinnacle.InternalServerError}
|
|
114
|
-
*
|
|
115
|
-
* @example
|
|
116
|
-
* await client.registerCompany({
|
|
117
|
-
* company: {
|
|
118
|
-
* name: "name",
|
|
119
|
-
* address: "address",
|
|
120
|
-
* ein: "ein",
|
|
121
|
-
* description: "description",
|
|
122
|
-
* brandColor: "brandColor",
|
|
123
|
-
* logoUrl: "logoUrl",
|
|
124
|
-
* heroUrl: "heroUrl"
|
|
125
|
-
* },
|
|
126
|
-
* companyContact: {
|
|
127
|
-
* primaryWebsiteUrl: "primaryWebsiteUrl",
|
|
128
|
-
* primaryWebsiteLabel: "primaryWebsiteLabel",
|
|
129
|
-
* primaryPhone: "primaryPhone",
|
|
130
|
-
* primaryPhoneLabel: "primaryPhoneLabel",
|
|
131
|
-
* primaryEmail: "primaryEmail",
|
|
132
|
-
* primaryEmailLabel: "primaryEmailLabel",
|
|
133
|
-
* privacyPolicyUrl: "privacyPolicyUrl",
|
|
134
|
-
* tosUrl: "tosUrl"
|
|
135
|
-
* },
|
|
136
|
-
* pointOfContact: {
|
|
137
|
-
* pocName: "pocName",
|
|
138
|
-
* pocTitle: "pocTitle",
|
|
139
|
-
* pocEmail: "pocEmail"
|
|
140
|
-
* }
|
|
141
|
-
* })
|
|
142
|
-
*/
|
|
143
|
-
registerCompany(request: Pinnacle.RegisterCompanyRequest, requestOptions?: PinnacleClient.RequestOptions): Promise<Pinnacle.RegisterCompanyResponse>;
|
|
144
|
-
/**
|
|
145
|
-
* Update a company on the Pinnacle platform
|
|
146
|
-
*
|
|
147
|
-
* @param {Pinnacle.UpdateCompanyRequest} request
|
|
148
|
-
* @param {PinnacleClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
149
|
-
*
|
|
150
|
-
* @throws {@link Pinnacle.BadRequestError}
|
|
151
|
-
* @throws {@link Pinnacle.UnauthorizedError}
|
|
152
|
-
* @throws {@link Pinnacle.InternalServerError}
|
|
153
|
-
*
|
|
154
|
-
* @example
|
|
155
|
-
* await client.updateCompany({
|
|
156
|
-
* companyId: "companyId"
|
|
157
|
-
* })
|
|
158
|
-
*/
|
|
159
|
-
updateCompany(request: Pinnacle.UpdateCompanyRequest, requestOptions?: PinnacleClient.RequestOptions): Promise<Pinnacle.UpdateCompanyResponse>;
|
|
39
|
+
getRcsFunctionality(request?: Pinnacle.GetRcsFunctionalityRequest, requestOptions?: PinnacleClient.RequestOptions): Promise<Pinnacle.RcsFunctionalities>;
|
|
40
|
+
protected _company: Company | undefined;
|
|
41
|
+
get company(): Company;
|
|
42
|
+
protected _send: Send | undefined;
|
|
43
|
+
get send(): Send;
|
|
160
44
|
protected _getCustomAuthorizationHeaders(): Promise<{
|
|
161
45
|
"PINNACLE-API-Key": string;
|
|
162
46
|
}>;
|