UNPKG

@e2y/occ-client

Version:

OCC client for SAP Commerce Cloud

10 lines (9 loc) 239 B
/** * Represents the configuration options for an OAuth2 client credentials flow. */ export interface OAuth2ClientCredentialsConfiguration { oauthTokenUrl: URL; clientId: string; clientSecret: string; scope?: string[]; }