@ibiliaze/global-vars 1.78.0 → 1.80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -223,7 +223,9 @@ export interface AccountBase<Id, TDate> {
|
|
|
223
223
|
expiresAt?: TDate;
|
|
224
224
|
email?: string;
|
|
225
225
|
accountId?: string;
|
|
226
|
-
metadata?:
|
|
226
|
+
metadata?: {
|
|
227
|
+
picture?: string;
|
|
228
|
+
};
|
|
227
229
|
createdAt?: TDate;
|
|
228
230
|
updatedAt?: TDate;
|
|
229
231
|
}
|
|
@@ -363,7 +365,9 @@ export interface FileBase<Id, TDate> {
|
|
|
363
365
|
}
|
|
364
366
|
export interface SectionsCategoryBase<Id> {
|
|
365
367
|
categoryId: Id;
|
|
368
|
+
flowId: Id;
|
|
366
369
|
sectionName: string;
|
|
370
|
+
price: number;
|
|
367
371
|
disabled?: boolean;
|
|
368
372
|
}
|
|
369
373
|
export interface FixtureBase<Id, TDate> {
|
|
@@ -544,7 +548,7 @@ export interface PageSectionBase {
|
|
|
544
548
|
paddingBottom?: string;
|
|
545
549
|
imgSrc?: string;
|
|
546
550
|
template: SectionTemplateBase;
|
|
547
|
-
metadata?:
|
|
551
|
+
metadata?: CtaBase | ImageDescriptionBase | FullWidthImageBase | HtmlBase | PartnersBase | ReviewsBase | YoutubeLinkBase | TableBase | SteppersBase | undefined;
|
|
548
552
|
}
|
|
549
553
|
export interface PageBase<Id, TDate> {
|
|
550
554
|
_id?: Id;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiliaze/global-vars",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.80.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsc",
|
|
23
23
|
"pub": "npm publish --access public",
|
|
24
|
-
"git": "git add .; git commit -m 'changes'; git tag -a v1.
|
|
24
|
+
"git": "git add .; git commit -m 'changes'; git tag -a v1.80.0 -m 'v1.80.0'; git push origin v1.80.0; git push",
|
|
25
25
|
"push": "npm run build; npm run git; npm run pub"
|
|
26
26
|
},
|
|
27
27
|
"author": "Ibi Hasanli",
|