@pathway-io/core 1.0.25 → 1.0.27
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
- package/src/styles/index.ts +4 -4
- package/src/types/user.ts +5 -0
package/dist/index.d.mts
CHANGED
@@ -92,10 +92,10 @@ declare const fonts: {
|
|
92
92
|
readonly size: 14;
|
93
93
|
readonly lineHeight: 20;
|
94
94
|
readonly family: {
|
95
|
-
readonly light: "
|
96
|
-
readonly reg: "
|
97
|
-
readonly med: "
|
98
|
-
readonly bold: "
|
95
|
+
readonly light: "HelveticaNowTextLight";
|
96
|
+
readonly reg: "HelveticaNowTextRegular";
|
97
|
+
readonly med: "HelveticaNowTextMedium";
|
98
|
+
readonly bold: "HelveticaNowTextBold";
|
99
99
|
};
|
100
100
|
};
|
101
101
|
readonly xs: {
|
@@ -168,5 +168,9 @@ type User = {
|
|
168
168
|
type UserUpdateEmailInput = {
|
169
169
|
email: string;
|
170
170
|
};
|
171
|
+
type UserUpdateNameInput = {
|
172
|
+
firstName: string;
|
173
|
+
lastName: string;
|
174
|
+
};
|
171
175
|
|
172
|
-
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateRequest, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, colors, fonts };
|
176
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateRequest, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, type UserUpdateNameInput, colors, fonts };
|
package/dist/index.d.ts
CHANGED
@@ -92,10 +92,10 @@ declare const fonts: {
|
|
92
92
|
readonly size: 14;
|
93
93
|
readonly lineHeight: 20;
|
94
94
|
readonly family: {
|
95
|
-
readonly light: "
|
96
|
-
readonly reg: "
|
97
|
-
readonly med: "
|
98
|
-
readonly bold: "
|
95
|
+
readonly light: "HelveticaNowTextLight";
|
96
|
+
readonly reg: "HelveticaNowTextRegular";
|
97
|
+
readonly med: "HelveticaNowTextMedium";
|
98
|
+
readonly bold: "HelveticaNowTextBold";
|
99
99
|
};
|
100
100
|
};
|
101
101
|
readonly xs: {
|
@@ -168,5 +168,9 @@ type User = {
|
|
168
168
|
type UserUpdateEmailInput = {
|
169
169
|
email: string;
|
170
170
|
};
|
171
|
+
type UserUpdateNameInput = {
|
172
|
+
firstName: string;
|
173
|
+
lastName: string;
|
174
|
+
};
|
171
175
|
|
172
|
-
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateRequest, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, colors, fonts };
|
176
|
+
export { type AuthOtpRequest, type AuthSignInRefreshRequest, type AuthSignInRefreshResponse, type AuthSignInRequest, type AuthSignInResponse, type Message, type MessageCreateRequest, type MessageListCoercedQueryParams, type MessageListQueryParams, type User, type UserRole, type UserUpdateEmailInput, type UserUpdateNameInput, colors, fonts };
|
package/dist/index.js
CHANGED
@@ -123,10 +123,10 @@ var fonts = {
|
|
123
123
|
size: 14,
|
124
124
|
lineHeight: 20,
|
125
125
|
family: {
|
126
|
-
light: "
|
127
|
-
reg: "
|
128
|
-
med: "
|
129
|
-
bold: "
|
126
|
+
light: "HelveticaNowTextLight",
|
127
|
+
reg: "HelveticaNowTextRegular",
|
128
|
+
med: "HelveticaNowTextMedium",
|
129
|
+
bold: "HelveticaNowTextBold"
|
130
130
|
}
|
131
131
|
},
|
132
132
|
xs: {
|
package/dist/index.mjs
CHANGED
@@ -96,10 +96,10 @@ var fonts = {
|
|
96
96
|
size: 14,
|
97
97
|
lineHeight: 20,
|
98
98
|
family: {
|
99
|
-
light: "
|
100
|
-
reg: "
|
101
|
-
med: "
|
102
|
-
bold: "
|
99
|
+
light: "HelveticaNowTextLight",
|
100
|
+
reg: "HelveticaNowTextRegular",
|
101
|
+
med: "HelveticaNowTextMedium",
|
102
|
+
bold: "HelveticaNowTextBold"
|
103
103
|
}
|
104
104
|
},
|
105
105
|
xs: {
|
package/package.json
CHANGED
package/src/styles/index.ts
CHANGED
@@ -99,10 +99,10 @@ export const fonts = {
|
|
99
99
|
size: 14,
|
100
100
|
lineHeight: 20,
|
101
101
|
family: {
|
102
|
-
light: "
|
103
|
-
reg: "
|
104
|
-
med: "
|
105
|
-
bold: "
|
102
|
+
light: "HelveticaNowTextLight",
|
103
|
+
reg: "HelveticaNowTextRegular",
|
104
|
+
med: "HelveticaNowTextMedium",
|
105
|
+
bold: "HelveticaNowTextBold",
|
106
106
|
},
|
107
107
|
},
|
108
108
|
xs: {
|