Skip to content

Commit 74ad929

Browse files
committed
Deployed using Blazing fast GitHub Pages deploy
1 parent 0058ec6 commit 74ad929

15 files changed

+62
-25
lines changed

node.d.ts

+7-4
Original file line numberDiff line numberDiff line change
@@ -3714,14 +3714,17 @@ declare namespace $ {
37143714
}
37153715

37163716
declare namespace $ {
3717-
let $piterjs_meetup_post_texts: {
3717+
let $piterjs_post_template: {
37183718
init: string;
37193719
init_speech: string;
37203720
place: string;
37213721
air: string;
37223722
afterparty: string;
37233723
retro: string;
37243724
};
3725+
}
3726+
3727+
declare namespace $ {
37253728
class $piterjs_meetup extends $piterjs_model {
37263729
start(next?: $mol_time_moment): $mol_time_moment;
37273730
video(next?: string): string;
@@ -3748,9 +3751,9 @@ declare namespace $ {
37483751
review(next?: string): string;
37493752
reviews(): string;
37503753
review_allowed(): boolean;
3751-
post_template(id: keyof typeof $piterjs_meetup_post_texts, next?: string): string;
3752-
post_moment(id: keyof typeof $piterjs_meetup_post_texts, next?: $mol_time_moment): $mol_time_moment | null;
3753-
post_text(id: keyof typeof $piterjs_meetup_post_texts): string;
3754+
post_template(id: keyof typeof $piterjs_post_template, next?: string): string;
3755+
post_moment(id: keyof typeof $piterjs_post_template, next?: $mol_time_moment): $mol_time_moment | null;
3756+
post_text(id: keyof typeof $piterjs_post_template): string;
37543757
}
37553758
}
37563759

node.d.ts.map

+1-1
Large diffs are not rendered by default.

node.deps.json

+1-1
Large diffs are not rendered by default.

node.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -11462,7 +11462,7 @@ var $;
1146211462
"use strict";
1146311463
var $;
1146411464
(function ($) {
11465-
$.$piterjs_meetup_post_texts = {
11465+
$.$piterjs_post_template = {
1146611466
init: `
1146711467
Ура! Скоро **PiterJS {title}**
1146811468

@@ -11506,6 +11506,12 @@ var $;
1150611506
👋 Не скучайте, мы скоро снова всех вас соберём вместе!
1150711507
`,
1150811508
};
11509+
})($ || ($ = {}));
11510+
11511+
;
11512+
"use strict";
11513+
var $;
11514+
(function ($) {
1150911515
class $piterjs_meetup extends $piterjs_model {
1151011516
start(next) {
1151111517
const str = this.sub('start', $hyoo_crowd_reg).str(next?.toString());
@@ -11658,7 +11664,7 @@ var $;
1165811664
}
1165911665
post_template(id, next) {
1166011666
return this.sub('post_template', $hyoo_crowd_dict).sub(id, $hyoo_crowd_text).text(next)
11661-
|| $.$piterjs_meetup_post_texts[id].replace(/\t/g, '').trim();
11667+
|| $piterjs_post_template[id].replace(/\t/g, '').trim();
1166211668
}
1166311669
post_moment(id, next) {
1166411670
const str = this.sub('post_moment', $hyoo_crowd_dict).sub(id, $hyoo_crowd_reg).str(next?.toString());

node.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node.mjs

+8-2
Original file line numberDiff line numberDiff line change
@@ -11462,7 +11462,7 @@ var $;
1146211462
"use strict";
1146311463
var $;
1146411464
(function ($) {
11465-
$.$piterjs_meetup_post_texts = {
11465+
$.$piterjs_post_template = {
1146611466
init: `
1146711467
Ура! Скоро **PiterJS {title}**
1146811468

@@ -11506,6 +11506,12 @@ var $;
1150611506
👋 Не скучайте, мы скоро снова всех вас соберём вместе!
1150711507
`,
1150811508
};
11509+
})($ || ($ = {}));
11510+
11511+
;
11512+
"use strict";
11513+
var $;
11514+
(function ($) {
1150911515
class $piterjs_meetup extends $piterjs_model {
1151011516
start(next) {
1151111517
const str = this.sub('start', $hyoo_crowd_reg).str(next?.toString());
@@ -11658,7 +11664,7 @@ var $;
1165811664
}
1165911665
post_template(id, next) {
1166011666
return this.sub('post_template', $hyoo_crowd_dict).sub(id, $hyoo_crowd_text).text(next)
11661-
|| $.$piterjs_meetup_post_texts[id].replace(/\t/g, '').trim();
11667+
|| $piterjs_post_template[id].replace(/\t/g, '').trim();
1166211668
}
1166311669
post_moment(id, next) {
1166411670
const str = this.sub('post_moment', $hyoo_crowd_dict).sub(id, $hyoo_crowd_reg).str(next?.toString());

node.test.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -11453,7 +11453,7 @@ var $;
1145311453
"use strict";
1145411454
var $;
1145511455
(function ($) {
11456-
$.$piterjs_meetup_post_texts = {
11456+
$.$piterjs_post_template = {
1145711457
init: `
1145811458
Ура! Скоро **PiterJS {title}**
1145911459

@@ -11497,6 +11497,12 @@ var $;
1149711497
👋 Не скучайте, мы скоро снова всех вас соберём вместе!
1149811498
`,
1149911499
};
11500+
})($ || ($ = {}));
11501+
11502+
;
11503+
"use strict";
11504+
var $;
11505+
(function ($) {
1150011506
class $piterjs_meetup extends $piterjs_model {
1150111507
start(next) {
1150211508
const str = this.sub('start', $hyoo_crowd_reg).str(next?.toString());
@@ -11649,7 +11655,7 @@ var $;
1164911655
}
1165011656
post_template(id, next) {
1165111657
return this.sub('post_template', $hyoo_crowd_dict).sub(id, $hyoo_crowd_text).text(next)
11652-
|| $.$piterjs_meetup_post_texts[id].replace(/\t/g, '').trim();
11658+
|| $piterjs_post_template[id].replace(/\t/g, '').trim();
1165311659
}
1165411660
post_moment(id, next) {
1165511661
const str = this.sub('post_moment', $hyoo_crowd_dict).sub(id, $hyoo_crowd_reg).str(next?.toString());

node.test.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@
261261
"$mol_crypto_secret",
262262
"$piterjs_secret",
263263
"$mol_crypto_hash",
264+
"$piterjs_post",
264265
"$mol_page",
265266
"$piterjs_meetup_page",
266267
"$mol_link_calendar",

web.d.ts

+7-4
Original file line numberDiff line numberDiff line change
@@ -3639,14 +3639,17 @@ declare namespace $ {
36393639
}
36403640

36413641
declare namespace $ {
3642-
let $piterjs_meetup_post_texts: {
3642+
let $piterjs_post_template: {
36433643
init: string;
36443644
init_speech: string;
36453645
place: string;
36463646
air: string;
36473647
afterparty: string;
36483648
retro: string;
36493649
};
3650+
}
3651+
3652+
declare namespace $ {
36503653
class $piterjs_meetup extends $piterjs_model {
36513654
start(next?: $mol_time_moment): $mol_time_moment;
36523655
video(next?: string): string;
@@ -3673,9 +3676,9 @@ declare namespace $ {
36733676
review(next?: string): string;
36743677
reviews(): string;
36753678
review_allowed(): boolean;
3676-
post_template(id: keyof typeof $piterjs_meetup_post_texts, next?: string): string;
3677-
post_moment(id: keyof typeof $piterjs_meetup_post_texts, next?: $mol_time_moment): $mol_time_moment | null;
3678-
post_text(id: keyof typeof $piterjs_meetup_post_texts): string;
3679+
post_template(id: keyof typeof $piterjs_post_template, next?: string): string;
3680+
post_moment(id: keyof typeof $piterjs_post_template, next?: $mol_time_moment): $mol_time_moment | null;
3681+
post_text(id: keyof typeof $piterjs_post_template): string;
36793682
}
36803683
}
36813684

web.d.ts.map

+1-1
Large diffs are not rendered by default.

web.deps.json

+1-1
Large diffs are not rendered by default.

web.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -11061,7 +11061,7 @@ var $;
1106111061
"use strict";
1106211062
var $;
1106311063
(function ($) {
11064-
$.$piterjs_meetup_post_texts = {
11064+
$.$piterjs_post_template = {
1106511065
init: `
1106611066
Ура! Скоро **PiterJS {title}**
1106711067

@@ -11105,6 +11105,12 @@ var $;
1110511105
👋 Не скучайте, мы скоро снова всех вас соберём вместе!
1110611106
`,
1110711107
};
11108+
})($ || ($ = {}));
11109+
11110+
;
11111+
"use strict";
11112+
var $;
11113+
(function ($) {
1110811114
class $piterjs_meetup extends $piterjs_model {
1110911115
start(next) {
1111011116
const str = this.sub('start', $hyoo_crowd_reg).str(next?.toString());
@@ -11257,7 +11263,7 @@ var $;
1125711263
}
1125811264
post_template(id, next) {
1125911265
return this.sub('post_template', $hyoo_crowd_dict).sub(id, $hyoo_crowd_text).text(next)
11260-
|| $.$piterjs_meetup_post_texts[id].replace(/\t/g, '').trim();
11266+
|| $piterjs_post_template[id].replace(/\t/g, '').trim();
1126111267
}
1126211268
post_moment(id, next) {
1126311269
const str = this.sub('post_moment', $hyoo_crowd_dict).sub(id, $hyoo_crowd_reg).str(next?.toString());

web.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web.mjs

+8-2
Original file line numberDiff line numberDiff line change
@@ -11061,7 +11061,7 @@ var $;
1106111061
"use strict";
1106211062
var $;
1106311063
(function ($) {
11064-
$.$piterjs_meetup_post_texts = {
11064+
$.$piterjs_post_template = {
1106511065
init: `
1106611066
Ура! Скоро **PiterJS {title}**
1106711067

@@ -11105,6 +11105,12 @@ var $;
1110511105
👋 Не скучайте, мы скоро снова всех вас соберём вместе!
1110611106
`,
1110711107
};
11108+
})($ || ($ = {}));
11109+
11110+
;
11111+
"use strict";
11112+
var $;
11113+
(function ($) {
1110811114
class $piterjs_meetup extends $piterjs_model {
1110911115
start(next) {
1111011116
const str = this.sub('start', $hyoo_crowd_reg).str(next?.toString());
@@ -11257,7 +11263,7 @@ var $;
1125711263
}
1125811264
post_template(id, next) {
1125911265
return this.sub('post_template', $hyoo_crowd_dict).sub(id, $hyoo_crowd_text).text(next)
11260-
|| $.$piterjs_meetup_post_texts[id].replace(/\t/g, '').trim();
11266+
|| $piterjs_post_template[id].replace(/\t/g, '').trim();
1126111267
}
1126211268
post_moment(id, next) {
1126311269
const str = this.sub('post_moment', $hyoo_crowd_dict).sub(id, $hyoo_crowd_reg).str(next?.toString());

0 commit comments

Comments
 (0)