passkit-webservice-toolkit
Version:
Integrate Apple Wallet Service with ease
12 lines (11 loc) • 456 B
TypeScript
/**
* Create and sign an updated pass, and send it to the device.
* @see https://developer.apple.com/documentation/walletpasses/send_an_updated_pass
*/
export declare const UpdateEndpoint: {
method: "GET";
path: "/v1/passes/:passTypeIdentifier/:serialNumber";
params: ["passTypeIdentifier", "serialNumber"];
toString(): "GET /v1/passes/:passTypeIdentifier/:serialNumber";
};
export type UpdateParams = (typeof UpdateEndpoint)["params"];