We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed45618 commit eadf00aCopy full SHA for eadf00a
types/common.ts
@@ -198,7 +198,12 @@ export type BusinessContact = {
198
jwtSubject?: string
199
} & Pick<BaseContactAttributes, "fullName" | "email" | "phone">
200
201
-export type AuthorizedUser = Pick<BaseContactAttributes, "fullName" | "email" | "phone">
+export type AuthorizedUser = Pick<BaseContactAttributes, "fullName" | "email" | "phone"> & {
202
+ /**
203
+ * Optional. See (this)[https://docs.unit.co/customer-api-tokens/#customers-create-customer-bearer-token-jwt] section for more information.
204
+ */
205
+ jwtSubject?: string
206
+}
207
208
export interface Counterparty {
209
/**
0 commit comments