inventora-shopify-admin-api
Version:
Shopify Admin API is a NodeJS library built to help developers easily authenticate and make calls against the Shopify API. It was inspired by and borrows heavily from ShopifySharp.
22 lines • 467 B
text/typescript
export type AuthScope = (
"read_content" |
"write_content" |
"read_themes" |
"write_themes" |
"read_products" |
"write_products" |
"read_customers" |
"write_customers" |
"read_orders" |
"write_orders" |
"read_script_tags" |
"write_script_tags" |
"read_fulfillments" |
"write_fulfillments" |
"read_shipping" |
"write_shipping" |
"read_analytics" |
"read_users" |
"write_users" |
string
);