@rippling/rippling-sdk 0.2.0-alpha.43 → 0.2.0-alpha.45
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.
- package/examples/manifest/dental-practice-management/dental-practice-management.ts +109 -59
- package/examples/manifest/dental-practice-management/manifest.json +83 -32
- package/examples/manifest/existing-manifest-mutations/existing-manifest-mutations.ts +6 -7
- package/examples/manifest/gym-membership-management/gym-membership-management.ts +107 -109
- package/examples/manifest/gym-membership-management/manifest.json +64 -39
- package/lib/manifest/_helpers.d.mts +4 -5
- package/lib/manifest/_helpers.d.mts.map +1 -1
- package/lib/manifest/_helpers.d.ts +4 -5
- package/lib/manifest/_helpers.d.ts.map +1 -1
- package/lib/manifest/_helpers.js.map +1 -1
- package/lib/manifest/_helpers.mjs.map +1 -1
- package/lib/manifest/app.d.mts +8 -13
- package/lib/manifest/app.d.mts.map +1 -1
- package/lib/manifest/app.d.ts +8 -13
- package/lib/manifest/app.d.ts.map +1 -1
- package/lib/manifest/app.js +13 -22
- package/lib/manifest/app.js.map +1 -1
- package/lib/manifest/app.mjs +13 -22
- package/lib/manifest/app.mjs.map +1 -1
- package/lib/manifest/custom-object-field-section.d.mts +2 -2
- package/lib/manifest/custom-object-field-section.d.ts +2 -2
- package/lib/manifest/custom-object-field-section.js +2 -2
- package/lib/manifest/custom-object-field-section.mjs +2 -2
- package/lib/manifest/custom-object-page-layout.d.mts +78 -37
- package/lib/manifest/custom-object-page-layout.d.mts.map +1 -1
- package/lib/manifest/custom-object-page-layout.d.ts +78 -37
- package/lib/manifest/custom-object-page-layout.d.ts.map +1 -1
- package/lib/manifest/custom-object-page-layout.js +263 -66
- package/lib/manifest/custom-object-page-layout.js.map +1 -1
- package/lib/manifest/custom-object-page-layout.mjs +263 -66
- package/lib/manifest/custom-object-page-layout.mjs.map +1 -1
- package/lib/manifest/custom-object.d.mts +6 -0
- package/lib/manifest/custom-object.d.mts.map +1 -1
- package/lib/manifest/custom-object.d.ts +6 -0
- package/lib/manifest/custom-object.d.ts.map +1 -1
- package/lib/manifest/custom-object.js +6 -0
- package/lib/manifest/custom-object.js.map +1 -1
- package/lib/manifest/custom-object.mjs +6 -0
- package/lib/manifest/custom-object.mjs.map +1 -1
- package/lib/manifest/existing-manifest-context.d.mts +0 -1
- package/lib/manifest/existing-manifest-context.d.mts.map +1 -1
- package/lib/manifest/existing-manifest-context.d.ts +0 -1
- package/lib/manifest/existing-manifest-context.d.ts.map +1 -1
- package/lib/manifest/existing-manifest-context.js +5 -10
- package/lib/manifest/existing-manifest-context.js.map +1 -1
- package/lib/manifest/existing-manifest-context.mjs +5 -10
- package/lib/manifest/existing-manifest-context.mjs.map +1 -1
- package/lib/manifest/field.d.mts +6 -3
- package/lib/manifest/field.d.mts.map +1 -1
- package/lib/manifest/field.d.ts +6 -3
- package/lib/manifest/field.d.ts.map +1 -1
- package/lib/manifest/field.js +26 -6
- package/lib/manifest/field.js.map +1 -1
- package/lib/manifest/field.mjs +26 -6
- package/lib/manifest/field.mjs.map +1 -1
- package/lib/manifest/sdui-page.d.mts +6 -1
- package/lib/manifest/sdui-page.d.mts.map +1 -1
- package/lib/manifest/sdui-page.d.ts +6 -1
- package/lib/manifest/sdui-page.d.ts.map +1 -1
- package/lib/manifest/sdui-page.js +6 -1
- package/lib/manifest/sdui-page.js.map +1 -1
- package/lib/manifest/sdui-page.mjs +6 -1
- package/lib/manifest/sdui-page.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/manifest/_helpers.ts +4 -5
- package/src/lib/manifest/app.ts +18 -27
- package/src/lib/manifest/custom-object-field-section.ts +2 -2
- package/src/lib/manifest/custom-object-page-layout.ts +477 -93
- package/src/lib/manifest/custom-object.ts +6 -0
- package/src/lib/manifest/existing-manifest-context.ts +5 -12
- package/src/lib/manifest/field.ts +45 -9
- package/src/lib/manifest/sdui-page.ts +6 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -492,14 +492,12 @@ new CustomObjectPageLayout(memberObj, {
|
|
|
492
492
|
type: 'tab_with_sections',
|
|
493
493
|
sections: [
|
|
494
494
|
{
|
|
495
|
-
key: 'profile',
|
|
496
495
|
name: 'Profile',
|
|
497
496
|
type: 'fields_section',
|
|
498
497
|
section: memberProfileSection,
|
|
499
498
|
fields: [memberFirstName, memberLastName, memberDisplayName, memberEmail, memberPhone],
|
|
500
499
|
},
|
|
501
500
|
{
|
|
502
|
-
key: 'membership',
|
|
503
501
|
name: 'Membership',
|
|
504
502
|
type: 'fields_section',
|
|
505
503
|
section: memberMembershipSection,
|
|
@@ -527,7 +525,6 @@ new CustomObjectPageLayout(trainerObj, {
|
|
|
527
525
|
type: 'tab_with_sections',
|
|
528
526
|
sections: [
|
|
529
527
|
{
|
|
530
|
-
key: 'info',
|
|
531
528
|
name: 'Details',
|
|
532
529
|
type: 'fields_section',
|
|
533
530
|
section: trainerSection,
|
|
@@ -561,7 +558,6 @@ new CustomObjectPageLayout(sessionObj, {
|
|
|
561
558
|
type: 'tab_with_sections',
|
|
562
559
|
sections: [
|
|
563
560
|
{
|
|
564
|
-
key: 'schedule',
|
|
565
561
|
name: 'Schedule',
|
|
566
562
|
type: 'fields_section',
|
|
567
563
|
section: sessionScheduleSection,
|
|
@@ -575,7 +571,6 @@ new CustomObjectPageLayout(sessionObj, {
|
|
|
575
571
|
],
|
|
576
572
|
},
|
|
577
573
|
{
|
|
578
|
-
key: 'class',
|
|
579
574
|
name: 'Class & room',
|
|
580
575
|
type: 'fields_section',
|
|
581
576
|
section: sessionTrainerSection,
|
|
@@ -603,14 +598,12 @@ new CustomObjectPageLayout(enrollmentObj, {
|
|
|
603
598
|
type: 'tab_with_sections',
|
|
604
599
|
sections: [
|
|
605
600
|
{
|
|
606
|
-
key: 'link',
|
|
607
601
|
name: 'Session & member',
|
|
608
602
|
type: 'fields_section',
|
|
609
603
|
section: enrollmentSessionSection,
|
|
610
604
|
fields: [enrollmentSessionRef, enrollmentMemberRef],
|
|
611
605
|
},
|
|
612
606
|
{
|
|
613
|
-
key: 'attendance',
|
|
614
607
|
name: 'Attendance & check-in',
|
|
615
608
|
type: 'fields_section',
|
|
616
609
|
section: enrollmentAttendanceSection,
|
|
@@ -630,117 +623,122 @@ new CustomObjectPageLayout(enrollmentObj, {
|
|
|
630
623
|
visibilityConditions: {},
|
|
631
624
|
});
|
|
632
625
|
|
|
633
|
-
// ── SDUI
|
|
634
|
-
const
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
'
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
const
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
626
|
+
// ── SDUI object-list tabs ───────────────────────────────────────────────────
|
|
627
|
+
const sduiObjectListDependencies = {
|
|
628
|
+
'@rippling/rippling-sdk': '^0.2.0-alpha.33',
|
|
629
|
+
'@rippling/sdui-builder': '^0.1.0',
|
|
630
|
+
};
|
|
631
|
+
|
|
632
|
+
function objectListViewCode(objectApiName: string): string {
|
|
633
|
+
return [
|
|
634
|
+
"import { FunctionContext, FunctionEvent, FunctionResponse } from '@rippling/rippling-sdk';",
|
|
635
|
+
"import SDUI from '@rippling/sdui-builder';",
|
|
636
|
+
'',
|
|
637
|
+
`const OBJECT = '${objectApiName}';`,
|
|
638
|
+
'',
|
|
639
|
+
'export async function onRipplingEvent(',
|
|
640
|
+
' event: FunctionEvent,',
|
|
641
|
+
' context: FunctionContext,',
|
|
642
|
+
'): Promise<FunctionResponse> {',
|
|
643
|
+
' const action = event.parameters?.action;',
|
|
644
|
+
'',
|
|
645
|
+
" if (!action || action === 'init') {",
|
|
646
|
+
' const s = SDUI.createState({});',
|
|
647
|
+
' const root = SDUI.components.VStack({',
|
|
648
|
+
' children: [',
|
|
649
|
+
' SDUI.components.ObjectListView({',
|
|
650
|
+
' objectApiName: OBJECT,',
|
|
651
|
+
' canSearchInGrid: true,',
|
|
652
|
+
' }),',
|
|
653
|
+
' ],',
|
|
654
|
+
' });',
|
|
655
|
+
' return new FunctionResponse({',
|
|
656
|
+
' body: { spec: JSON.stringify(SDUI.render(s, root)) },',
|
|
657
|
+
' statusCode: 200,',
|
|
658
|
+
' headers: {},',
|
|
659
|
+
" message: '',",
|
|
660
|
+
' });',
|
|
661
|
+
' }',
|
|
662
|
+
'',
|
|
663
|
+
" return new FunctionResponse({ body: {}, statusCode: 200, headers: {}, message: '' });",
|
|
664
|
+
'}',
|
|
665
|
+
].join('\n');
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
function createObjectListPage(props: {
|
|
669
|
+
objectApiName: string;
|
|
670
|
+
functionApiName: string;
|
|
671
|
+
functionName: string;
|
|
672
|
+
functionDescription: string;
|
|
673
|
+
pageId: string;
|
|
674
|
+
pageName: string;
|
|
675
|
+
pageDescription: string;
|
|
676
|
+
}): SduiPage {
|
|
677
|
+
const listFn = new ManifestFunction(manifest, {
|
|
678
|
+
apiName: props.functionApiName,
|
|
679
|
+
name: props.functionName,
|
|
680
|
+
description: props.functionDescription,
|
|
681
|
+
runtime: 'lambda-deno',
|
|
682
|
+
code: objectListViewCode(props.objectApiName),
|
|
683
|
+
dependencies: sduiObjectListDependencies,
|
|
684
|
+
isAsync: false,
|
|
685
|
+
});
|
|
686
|
+
|
|
687
|
+
return new SduiPage(manifest, {
|
|
688
|
+
sduiPageId: props.pageId,
|
|
689
|
+
name: props.pageName,
|
|
690
|
+
function: listFn,
|
|
691
|
+
description: props.pageDescription,
|
|
692
|
+
});
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
const memberListPage = createObjectListPage({
|
|
696
|
+
objectApiName: memberObj.getApiName(),
|
|
697
|
+
functionApiName: 'gym_member_list_fn',
|
|
698
|
+
functionName: 'Members (SDUI)',
|
|
699
|
+
functionDescription: 'SDUI ObjectListView for member records',
|
|
700
|
+
pageId: 'gym_members',
|
|
701
|
+
pageName: 'Members',
|
|
702
|
+
pageDescription: 'SDUI ObjectListView for member records',
|
|
703
|
+
});
|
|
704
|
+
|
|
705
|
+
const trainerListPage = createObjectListPage({
|
|
706
|
+
objectApiName: trainerObj.getApiName(),
|
|
707
|
+
functionApiName: 'gym_trainer_list_fn',
|
|
708
|
+
functionName: 'Trainers (SDUI)',
|
|
709
|
+
functionDescription: 'SDUI ObjectListView for trainer records',
|
|
710
|
+
pageId: 'gym_trainers',
|
|
711
|
+
pageName: 'Trainers',
|
|
712
|
+
pageDescription: 'SDUI ObjectListView for trainer records',
|
|
713
|
+
});
|
|
714
|
+
|
|
715
|
+
const todaySchedulePage = createObjectListPage({
|
|
716
|
+
objectApiName: sessionObj.getApiName(),
|
|
717
|
+
functionApiName: 'gym_today_schedule_fn',
|
|
718
|
+
functionName: 'Today’s schedule (SDUI)',
|
|
719
|
+
functionDescription:
|
|
706
720
|
'Searchable grid of class sessions — pair with list view “Today’s class sessions” or filter by date',
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
isAsync: false,
|
|
711
|
-
});
|
|
712
|
-
|
|
713
|
-
const checkInDeskFn = new ManifestFunction(manifest, {
|
|
714
|
-
apiName: 'gym_check_in_desk_fn',
|
|
715
|
-
name: 'Check-in desk (SDUI)',
|
|
716
|
-
description: 'Searchable roster grid — update attendance and checked-in time as members arrive',
|
|
717
|
-
runtime: 'lambda-deno',
|
|
718
|
-
code: checkInDeskCode,
|
|
719
|
-
dependencies: { '@rippling/rippling-sdk': '^0.2.0-alpha.33', '@rippling/sdui-builder': '^0.1.0' },
|
|
720
|
-
isAsync: false,
|
|
721
|
+
pageId: 'gym_today_schedule',
|
|
722
|
+
pageName: 'Today’s schedule',
|
|
723
|
+
pageDescription: 'SDUI list of class sessions for front desk (filter to today in the grid)',
|
|
721
724
|
});
|
|
722
725
|
|
|
723
|
-
const
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
sduiPageId: 'gym_check_in_desk',
|
|
732
|
-
name: 'Check-in desk',
|
|
733
|
-
function: checkInDeskFn,
|
|
734
|
-
description: 'SDUI roster — set attendance to Checked in and optional checked-in time',
|
|
726
|
+
const checkInDeskPage = createObjectListPage({
|
|
727
|
+
objectApiName: enrollmentObj.getApiName(),
|
|
728
|
+
functionApiName: 'gym_check_in_desk_fn',
|
|
729
|
+
functionName: 'Check-in desk (SDUI)',
|
|
730
|
+
functionDescription: 'Searchable roster grid — update attendance and checked-in time as members arrive',
|
|
731
|
+
pageId: 'gym_check_in_desk',
|
|
732
|
+
pageName: 'Check-in desk',
|
|
733
|
+
pageDescription: 'SDUI roster — set attendance to Checked in and optional checked-in time',
|
|
735
734
|
});
|
|
736
735
|
|
|
737
736
|
new App(manifest, {
|
|
738
737
|
apiName: 'gym_membership_management_app',
|
|
739
738
|
name: 'Gym Membership Management',
|
|
740
|
-
description:
|
|
741
|
-
'Members, trainers, schedules, enrollments, today’s sessions list view, and SDUI for schedule + check-in',
|
|
739
|
+
description: 'Members, trainers, schedules, enrollments, and SDUI object-list tabs for schedule + check-in',
|
|
742
740
|
appType: 'custom',
|
|
743
|
-
pages: [
|
|
741
|
+
pages: [memberListPage, trainerListPage, todaySchedulePage, checkInDeskPage],
|
|
744
742
|
});
|
|
745
743
|
|
|
746
744
|
console.log(manifest.preview());
|
|
@@ -1658,6 +1658,7 @@
|
|
|
1658
1658
|
"name": "Member",
|
|
1659
1659
|
"system_created": false,
|
|
1660
1660
|
"tab_edits": {
|
|
1661
|
+
"tabsOrder": ["member"],
|
|
1661
1662
|
"newTabs": [
|
|
1662
1663
|
{
|
|
1663
1664
|
"key": "member",
|
|
@@ -1665,7 +1666,6 @@
|
|
|
1665
1666
|
"type": "tab_with_sections",
|
|
1666
1667
|
"sections": [
|
|
1667
1668
|
{
|
|
1668
|
-
"key": "profile",
|
|
1669
1669
|
"name": "Profile",
|
|
1670
1670
|
"type": "fields_section",
|
|
1671
1671
|
"fields": [
|
|
@@ -1687,7 +1687,6 @@
|
|
|
1687
1687
|
]
|
|
1688
1688
|
},
|
|
1689
1689
|
{
|
|
1690
|
-
"key": "membership",
|
|
1691
1690
|
"name": "Membership",
|
|
1692
1691
|
"type": "fields_section",
|
|
1693
1692
|
"fields": [
|
|
@@ -1705,8 +1704,7 @@
|
|
|
1705
1704
|
]
|
|
1706
1705
|
}
|
|
1707
1706
|
],
|
|
1708
|
-
"systemTabEdits": {}
|
|
1709
|
-
"tabsOrder": ["member"]
|
|
1707
|
+
"systemTabEdits": {}
|
|
1710
1708
|
},
|
|
1711
1709
|
"header_edits": {
|
|
1712
1710
|
"newTitleField": "member_display_name__c"
|
|
@@ -1722,6 +1720,7 @@
|
|
|
1722
1720
|
"name": "Trainer",
|
|
1723
1721
|
"system_created": false,
|
|
1724
1722
|
"tab_edits": {
|
|
1723
|
+
"tabsOrder": ["trainer"],
|
|
1725
1724
|
"newTabs": [
|
|
1726
1725
|
{
|
|
1727
1726
|
"key": "trainer",
|
|
@@ -1729,7 +1728,6 @@
|
|
|
1729
1728
|
"type": "tab_with_sections",
|
|
1730
1729
|
"sections": [
|
|
1731
1730
|
{
|
|
1732
|
-
"key": "info",
|
|
1733
1731
|
"name": "Details",
|
|
1734
1732
|
"type": "fields_section",
|
|
1735
1733
|
"fields": [
|
|
@@ -1753,8 +1751,7 @@
|
|
|
1753
1751
|
]
|
|
1754
1752
|
}
|
|
1755
1753
|
],
|
|
1756
|
-
"systemTabEdits": {}
|
|
1757
|
-
"tabsOrder": ["trainer"]
|
|
1754
|
+
"systemTabEdits": {}
|
|
1758
1755
|
},
|
|
1759
1756
|
"header_edits": {
|
|
1760
1757
|
"newTitleField": "full_name__c"
|
|
@@ -1770,6 +1767,7 @@
|
|
|
1770
1767
|
"name": "Class session",
|
|
1771
1768
|
"system_created": false,
|
|
1772
1769
|
"tab_edits": {
|
|
1770
|
+
"tabsOrder": ["session"],
|
|
1773
1771
|
"newTabs": [
|
|
1774
1772
|
{
|
|
1775
1773
|
"key": "session",
|
|
@@ -1777,7 +1775,6 @@
|
|
|
1777
1775
|
"type": "tab_with_sections",
|
|
1778
1776
|
"sections": [
|
|
1779
1777
|
{
|
|
1780
|
-
"key": "schedule",
|
|
1781
1778
|
"name": "Schedule",
|
|
1782
1779
|
"type": "fields_section",
|
|
1783
1780
|
"fields": [
|
|
@@ -1802,7 +1799,6 @@
|
|
|
1802
1799
|
]
|
|
1803
1800
|
},
|
|
1804
1801
|
{
|
|
1805
|
-
"key": "class",
|
|
1806
1802
|
"name": "Class & room",
|
|
1807
1803
|
"type": "fields_section",
|
|
1808
1804
|
"fields": [
|
|
@@ -1823,8 +1819,7 @@
|
|
|
1823
1819
|
]
|
|
1824
1820
|
}
|
|
1825
1821
|
],
|
|
1826
|
-
"systemTabEdits": {}
|
|
1827
|
-
"tabsOrder": ["session"]
|
|
1822
|
+
"systemTabEdits": {}
|
|
1828
1823
|
},
|
|
1829
1824
|
"header_edits": {
|
|
1830
1825
|
"newTitleField": "session_board_label__c"
|
|
@@ -1840,6 +1835,7 @@
|
|
|
1840
1835
|
"name": "Enrollment",
|
|
1841
1836
|
"system_created": false,
|
|
1842
1837
|
"tab_edits": {
|
|
1838
|
+
"tabsOrder": ["roster"],
|
|
1843
1839
|
"newTabs": [
|
|
1844
1840
|
{
|
|
1845
1841
|
"key": "roster",
|
|
@@ -1847,7 +1843,6 @@
|
|
|
1847
1843
|
"type": "tab_with_sections",
|
|
1848
1844
|
"sections": [
|
|
1849
1845
|
{
|
|
1850
|
-
"key": "link",
|
|
1851
1846
|
"name": "Session & member",
|
|
1852
1847
|
"type": "fields_section",
|
|
1853
1848
|
"fields": [
|
|
@@ -1860,7 +1855,6 @@
|
|
|
1860
1855
|
]
|
|
1861
1856
|
},
|
|
1862
1857
|
{
|
|
1863
|
-
"key": "attendance",
|
|
1864
1858
|
"name": "Attendance & check-in",
|
|
1865
1859
|
"type": "fields_section",
|
|
1866
1860
|
"fields": [
|
|
@@ -1881,8 +1875,7 @@
|
|
|
1881
1875
|
]
|
|
1882
1876
|
}
|
|
1883
1877
|
],
|
|
1884
|
-
"systemTabEdits": {}
|
|
1885
|
-
"tabsOrder": ["roster"]
|
|
1878
|
+
"systemTabEdits": {}
|
|
1886
1879
|
},
|
|
1887
1880
|
"header_edits": {
|
|
1888
1881
|
"newTitleField": "roster_row_label__c"
|
|
@@ -1890,6 +1883,48 @@
|
|
|
1890
1883
|
"visibility_conditions": {},
|
|
1891
1884
|
"blueprint_key": "gym_class_enrollment__c"
|
|
1892
1885
|
},
|
|
1886
|
+
{
|
|
1887
|
+
"type": "FUNCTION",
|
|
1888
|
+
"name": "Members (SDUI)",
|
|
1889
|
+
"api_name": "gym_member_list_fn",
|
|
1890
|
+
"description": "SDUI ObjectListView for member records",
|
|
1891
|
+
"code_draft": "import { FunctionContext, FunctionEvent, FunctionResponse } from '@rippling/rippling-sdk';\nimport SDUI from '@rippling/sdui-builder';\n\nconst OBJECT = 'gym_member__c';\n\nexport async function onRipplingEvent(\n event: FunctionEvent,\n context: FunctionContext,\n): Promise<FunctionResponse> {\n const action = event.parameters?.action;\n\n if (!action || action === 'init') {\n const s = SDUI.createState({});\n const root = SDUI.components.VStack({\n children: [\n SDUI.components.ObjectListView({\n objectApiName: OBJECT,\n canSearchInGrid: true,\n }),\n ],\n });\n return new FunctionResponse({\n body: { spec: JSON.stringify(SDUI.render(s, root)) },\n statusCode: 200,\n headers: {},\n message: '',\n });\n }\n\n return new FunctionResponse({ body: {}, statusCode: 200, headers: {}, message: '' });\n}",
|
|
1892
|
+
"dependencies": {
|
|
1893
|
+
"@rippling/rippling-sdk": "^0.2.0-alpha.33",
|
|
1894
|
+
"@rippling/sdui-builder": "^0.1.0"
|
|
1895
|
+
},
|
|
1896
|
+
"deployment_options": {
|
|
1897
|
+
"runtime": "lambda-deno"
|
|
1898
|
+
}
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"type": "SDUI_PAGE",
|
|
1902
|
+
"name": "Members",
|
|
1903
|
+
"sdui_page_id": "gym_members",
|
|
1904
|
+
"function_api_name": "gym_member_list_fn",
|
|
1905
|
+
"description": "SDUI ObjectListView for member records"
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
"type": "FUNCTION",
|
|
1909
|
+
"name": "Trainers (SDUI)",
|
|
1910
|
+
"api_name": "gym_trainer_list_fn",
|
|
1911
|
+
"description": "SDUI ObjectListView for trainer records",
|
|
1912
|
+
"code_draft": "import { FunctionContext, FunctionEvent, FunctionResponse } from '@rippling/rippling-sdk';\nimport SDUI from '@rippling/sdui-builder';\n\nconst OBJECT = 'gym_trainer__c';\n\nexport async function onRipplingEvent(\n event: FunctionEvent,\n context: FunctionContext,\n): Promise<FunctionResponse> {\n const action = event.parameters?.action;\n\n if (!action || action === 'init') {\n const s = SDUI.createState({});\n const root = SDUI.components.VStack({\n children: [\n SDUI.components.ObjectListView({\n objectApiName: OBJECT,\n canSearchInGrid: true,\n }),\n ],\n });\n return new FunctionResponse({\n body: { spec: JSON.stringify(SDUI.render(s, root)) },\n statusCode: 200,\n headers: {},\n message: '',\n });\n }\n\n return new FunctionResponse({ body: {}, statusCode: 200, headers: {}, message: '' });\n}",
|
|
1913
|
+
"dependencies": {
|
|
1914
|
+
"@rippling/rippling-sdk": "^0.2.0-alpha.33",
|
|
1915
|
+
"@rippling/sdui-builder": "^0.1.0"
|
|
1916
|
+
},
|
|
1917
|
+
"deployment_options": {
|
|
1918
|
+
"runtime": "lambda-deno"
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"type": "SDUI_PAGE",
|
|
1923
|
+
"name": "Trainers",
|
|
1924
|
+
"sdui_page_id": "gym_trainers",
|
|
1925
|
+
"function_api_name": "gym_trainer_list_fn",
|
|
1926
|
+
"description": "SDUI ObjectListView for trainer records"
|
|
1927
|
+
},
|
|
1893
1928
|
{
|
|
1894
1929
|
"type": "FUNCTION",
|
|
1895
1930
|
"name": "Today’s schedule (SDUI)",
|
|
@@ -1904,6 +1939,13 @@
|
|
|
1904
1939
|
"runtime": "lambda-deno"
|
|
1905
1940
|
}
|
|
1906
1941
|
},
|
|
1942
|
+
{
|
|
1943
|
+
"type": "SDUI_PAGE",
|
|
1944
|
+
"name": "Today’s schedule",
|
|
1945
|
+
"sdui_page_id": "gym_today_schedule",
|
|
1946
|
+
"function_api_name": "gym_today_schedule_fn",
|
|
1947
|
+
"description": "SDUI list of class sessions for front desk (filter to today in the grid)"
|
|
1948
|
+
},
|
|
1907
1949
|
{
|
|
1908
1950
|
"type": "FUNCTION",
|
|
1909
1951
|
"name": "Check-in desk (SDUI)",
|
|
@@ -1918,13 +1960,6 @@
|
|
|
1918
1960
|
"runtime": "lambda-deno"
|
|
1919
1961
|
}
|
|
1920
1962
|
},
|
|
1921
|
-
{
|
|
1922
|
-
"type": "SDUI_PAGE",
|
|
1923
|
-
"name": "Today’s schedule",
|
|
1924
|
-
"sdui_page_id": "gym_today_schedule",
|
|
1925
|
-
"function_api_name": "gym_today_schedule_fn",
|
|
1926
|
-
"description": "SDUI list of class sessions for front desk (filter to today in the grid)"
|
|
1927
|
-
},
|
|
1928
1963
|
{
|
|
1929
1964
|
"type": "SDUI_PAGE",
|
|
1930
1965
|
"name": "Check-in desk",
|
|
@@ -1936,28 +1971,18 @@
|
|
|
1936
1971
|
"type": "CUSTOM_APP",
|
|
1937
1972
|
"api_name": "gym_membership_management_app",
|
|
1938
1973
|
"name": "Gym Membership Management",
|
|
1939
|
-
"description": "Members, trainers, schedules, enrollments,
|
|
1974
|
+
"description": "Members, trainers, schedules, enrollments, and SDUI object-list tabs for schedule + check-in",
|
|
1940
1975
|
"app_type": "custom",
|
|
1941
1976
|
"pages": [
|
|
1942
1977
|
{
|
|
1943
|
-
"api_name": "
|
|
1944
|
-
"page_type": "
|
|
1945
|
-
"
|
|
1946
|
-
},
|
|
1947
|
-
{
|
|
1948
|
-
"api_name": "gym_trainer__c",
|
|
1949
|
-
"page_type": "object_page",
|
|
1950
|
-
"object_rql_name": "gym_trainer__c"
|
|
1951
|
-
},
|
|
1952
|
-
{
|
|
1953
|
-
"api_name": "gym_class_session__c",
|
|
1954
|
-
"page_type": "object_page",
|
|
1955
|
-
"object_rql_name": "gym_class_session__c"
|
|
1978
|
+
"api_name": "gym_members",
|
|
1979
|
+
"page_type": "sdui_page",
|
|
1980
|
+
"sdui_page_id": "gym_members"
|
|
1956
1981
|
},
|
|
1957
1982
|
{
|
|
1958
|
-
"api_name": "
|
|
1959
|
-
"page_type": "
|
|
1960
|
-
"
|
|
1983
|
+
"api_name": "gym_trainers",
|
|
1984
|
+
"page_type": "sdui_page",
|
|
1985
|
+
"sdui_page_id": "gym_trainers"
|
|
1961
1986
|
},
|
|
1962
1987
|
{
|
|
1963
1988
|
"api_name": "gym_today_schedule",
|
|
@@ -38,12 +38,11 @@ export type FormulaFieldType = 'TEXT' | 'NUMBER' | 'BOOLEAN' | 'CURRENCY' | 'PER
|
|
|
38
38
|
/** Runtime for FUNCTION component. */
|
|
39
39
|
export type FunctionRuntime = 'cloudflare-js' | 'lambda-deno' | 'lambda-python';
|
|
40
40
|
/**
|
|
41
|
-
* Page type inside CUSTOM_APP.
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
* wrap a function in an SDUI page instead.
|
|
41
|
+
* Page type emitted inside CUSTOM_APP pages. Apps authored through the manifest
|
|
42
|
+
* SDK expose SDUI page tabs only; wrap custom-object records in an SDUI
|
|
43
|
+
* ObjectListView when you need an object-backed page.
|
|
45
44
|
*/
|
|
46
|
-
export type PageType = '
|
|
45
|
+
export type PageType = 'sdui_page';
|
|
47
46
|
/** Backend supports exactly these four (`constants.py:1316`). */
|
|
48
47
|
export type SummaryAggregation = 'COUNT' | 'SUM' | 'MIN' | 'MAX';
|
|
49
48
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_helpers.d.mts","sourceRoot":"","sources":["../../src/lib/manifest/_helpers.ts"],"names":[],"mappings":"AAQA,4DAA4D;AAC5D,wBAAgB,UAAU,CAAC,MAAM,SAAO,GAAG,MAAM,CAGhD;AAMD,0CAA0C;AAC1C,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,QAAQ,GAAG,kBAAkB,CAAC;AAEnE;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,4BAA4B,GAAG,iCAAiC,CAAC;AAEjG,6BAA6B;AAC7B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,UAAU,CAAC;AAEpD,6BAA6B;AAC7B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,OAAO,CAAC;AAEjD,qCAAqC;AACrC,MAAM,MAAM,SAAS,GAAG,KAAK,GAAG,MAAM,CAAC;AAEvC,4BAA4B;AAC5B,MAAM,MAAM,WAAW,GAAG,KAAK,GAAG,YAAY,CAAC;AAE/C;;;;;;GAMG;AACH,MAAM,MAAM,SAAS,GACjB,MAAM,GACN,WAAW,GACX,OAAO,GACP,KAAK,GACL,cAAc,GACd,QAAQ,GACR,UAAU,GACV,YAAY,GACZ,MAAM,GACN,UAAU,GACV,MAAM,GACN,QAAQ,GACR,OAAO,GACP,SAAS,GACT,MAAM,GACN,oBAAoB,CAAC;AAEzB;;;GAGG;AACH,MAAM,MAAM,QAAQ,GAAG,QAAQ,GAAG,cAAc,CAAC;AAEjD;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,KAAK,CAAC;AAE1G,sCAAsC;AACtC,MAAM,MAAM,eAAe,GAAG,eAAe,GAAG,aAAa,GAAG,eAAe,CAAC;AAEhF
|
|
1
|
+
{"version":3,"file":"_helpers.d.mts","sourceRoot":"","sources":["../../src/lib/manifest/_helpers.ts"],"names":[],"mappings":"AAQA,4DAA4D;AAC5D,wBAAgB,UAAU,CAAC,MAAM,SAAO,GAAG,MAAM,CAGhD;AAMD,0CAA0C;AAC1C,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,QAAQ,GAAG,kBAAkB,CAAC;AAEnE;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,4BAA4B,GAAG,iCAAiC,CAAC;AAEjG,6BAA6B;AAC7B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,UAAU,CAAC;AAEpD,6BAA6B;AAC7B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,OAAO,CAAC;AAEjD,qCAAqC;AACrC,MAAM,MAAM,SAAS,GAAG,KAAK,GAAG,MAAM,CAAC;AAEvC,4BAA4B;AAC5B,MAAM,MAAM,WAAW,GAAG,KAAK,GAAG,YAAY,CAAC;AAE/C;;;;;;GAMG;AACH,MAAM,MAAM,SAAS,GACjB,MAAM,GACN,WAAW,GACX,OAAO,GACP,KAAK,GACL,cAAc,GACd,QAAQ,GACR,UAAU,GACV,YAAY,GACZ,MAAM,GACN,UAAU,GACV,MAAM,GACN,QAAQ,GACR,OAAO,GACP,SAAS,GACT,MAAM,GACN,oBAAoB,CAAC;AAEzB;;;GAGG;AACH,MAAM,MAAM,QAAQ,GAAG,QAAQ,GAAG,cAAc,CAAC;AAEjD;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,KAAK,CAAC;AAE1G,sCAAsC;AACtC,MAAM,MAAM,eAAe,GAAG,eAAe,GAAG,aAAa,GAAG,eAAe,CAAC;AAEhF;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,WAAW,CAAC;AAMnC,iEAAiE;AACjE,MAAM,MAAM,kBAAkB,GAAG,OAAO,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AAEjE;;;;;;;;;GASG;AACH,MAAM,MAAM,qBAAqB,GAC7B,GAAG,GACH,IAAI,GACJ,GAAG,GACH,IAAI,GACJ,GAAG,GACH,IAAI,CAAC;AAET;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,kBAAkB,EAAE,WAAW,CAAC,SAAS,CAAC,CAKrF,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,wBAAwB,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,WAAW,CAAC,qBAAqB,CAAC,CAAC,CAanG,CAAC"}
|
|
@@ -38,12 +38,11 @@ export type FormulaFieldType = 'TEXT' | 'NUMBER' | 'BOOLEAN' | 'CURRENCY' | 'PER
|
|
|
38
38
|
/** Runtime for FUNCTION component. */
|
|
39
39
|
export type FunctionRuntime = 'cloudflare-js' | 'lambda-deno' | 'lambda-python';
|
|
40
40
|
/**
|
|
41
|
-
* Page type inside CUSTOM_APP.
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
* wrap a function in an SDUI page instead.
|
|
41
|
+
* Page type emitted inside CUSTOM_APP pages. Apps authored through the manifest
|
|
42
|
+
* SDK expose SDUI page tabs only; wrap custom-object records in an SDUI
|
|
43
|
+
* ObjectListView when you need an object-backed page.
|
|
45
44
|
*/
|
|
46
|
-
export type PageType = '
|
|
45
|
+
export type PageType = 'sdui_page';
|
|
47
46
|
/** Backend supports exactly these four (`constants.py:1316`). */
|
|
48
47
|
export type SummaryAggregation = 'COUNT' | 'SUM' | 'MIN' | 'MAX';
|
|
49
48
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_helpers.d.ts","sourceRoot":"","sources":["../../src/lib/manifest/_helpers.ts"],"names":[],"mappings":"AAQA,4DAA4D;AAC5D,wBAAgB,UAAU,CAAC,MAAM,SAAO,GAAG,MAAM,CAGhD;AAMD,0CAA0C;AAC1C,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,QAAQ,GAAG,kBAAkB,CAAC;AAEnE;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,4BAA4B,GAAG,iCAAiC,CAAC;AAEjG,6BAA6B;AAC7B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,UAAU,CAAC;AAEpD,6BAA6B;AAC7B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,OAAO,CAAC;AAEjD,qCAAqC;AACrC,MAAM,MAAM,SAAS,GAAG,KAAK,GAAG,MAAM,CAAC;AAEvC,4BAA4B;AAC5B,MAAM,MAAM,WAAW,GAAG,KAAK,GAAG,YAAY,CAAC;AAE/C;;;;;;GAMG;AACH,MAAM,MAAM,SAAS,GACjB,MAAM,GACN,WAAW,GACX,OAAO,GACP,KAAK,GACL,cAAc,GACd,QAAQ,GACR,UAAU,GACV,YAAY,GACZ,MAAM,GACN,UAAU,GACV,MAAM,GACN,QAAQ,GACR,OAAO,GACP,SAAS,GACT,MAAM,GACN,oBAAoB,CAAC;AAEzB;;;GAGG;AACH,MAAM,MAAM,QAAQ,GAAG,QAAQ,GAAG,cAAc,CAAC;AAEjD;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,KAAK,CAAC;AAE1G,sCAAsC;AACtC,MAAM,MAAM,eAAe,GAAG,eAAe,GAAG,aAAa,GAAG,eAAe,CAAC;AAEhF
|
|
1
|
+
{"version":3,"file":"_helpers.d.ts","sourceRoot":"","sources":["../../src/lib/manifest/_helpers.ts"],"names":[],"mappings":"AAQA,4DAA4D;AAC5D,wBAAgB,UAAU,CAAC,MAAM,SAAO,GAAG,MAAM,CAGhD;AAMD,0CAA0C;AAC1C,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,QAAQ,GAAG,kBAAkB,CAAC;AAEnE;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,4BAA4B,GAAG,iCAAiC,CAAC;AAEjG,6BAA6B;AAC7B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,UAAU,CAAC;AAEpD,6BAA6B;AAC7B,MAAM,MAAM,eAAe,GAAG,QAAQ,GAAG,OAAO,CAAC;AAEjD,qCAAqC;AACrC,MAAM,MAAM,SAAS,GAAG,KAAK,GAAG,MAAM,CAAC;AAEvC,4BAA4B;AAC5B,MAAM,MAAM,WAAW,GAAG,KAAK,GAAG,YAAY,CAAC;AAE/C;;;;;;GAMG;AACH,MAAM,MAAM,SAAS,GACjB,MAAM,GACN,WAAW,GACX,OAAO,GACP,KAAK,GACL,cAAc,GACd,QAAQ,GACR,UAAU,GACV,YAAY,GACZ,MAAM,GACN,UAAU,GACV,MAAM,GACN,QAAQ,GACR,OAAO,GACP,SAAS,GACT,MAAM,GACN,oBAAoB,CAAC;AAEzB;;;GAGG;AACH,MAAM,MAAM,QAAQ,GAAG,QAAQ,GAAG,cAAc,CAAC;AAEjD;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,KAAK,CAAC;AAE1G,sCAAsC;AACtC,MAAM,MAAM,eAAe,GAAG,eAAe,GAAG,aAAa,GAAG,eAAe,CAAC;AAEhF;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,WAAW,CAAC;AAMnC,iEAAiE;AACjE,MAAM,MAAM,kBAAkB,GAAG,OAAO,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AAEjE;;;;;;;;;GASG;AACH,MAAM,MAAM,qBAAqB,GAC7B,GAAG,GACH,IAAI,GACJ,GAAG,GACH,IAAI,GACJ,GAAG,GACH,IAAI,CAAC;AAET;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,kBAAkB,EAAE,WAAW,CAAC,SAAS,CAAC,CAKrF,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,wBAAwB,EAAE,OAAO,CAAC,MAAM,CAAC,SAAS,EAAE,WAAW,CAAC,qBAAqB,CAAC,CAAC,CAanG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_helpers.js","sourceRoot":"","sources":["../../src/lib/manifest/_helpers.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAKH,gCAGC;AAND,IAAI,QAAQ,GAAG,CAAC,CAAC;AAEjB,4DAA4D;AAC5D,SAAgB,UAAU,CAAC,MAAM,GAAG,IAAI;IACtC,MAAM,IAAI,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACpD,OAAO,GAAG,MAAM,IAAI,IAAI,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC;AACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"_helpers.js","sourceRoot":"","sources":["../../src/lib/manifest/_helpers.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAKH,gCAGC;AAND,IAAI,QAAQ,GAAG,CAAC,CAAC;AAEjB,4DAA4D;AAC5D,SAAgB,UAAU,CAAC,MAAM,GAAG,IAAI;IACtC,MAAM,IAAI,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACpD,OAAO,GAAG,MAAM,IAAI,IAAI,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC;AACzD,CAAC;AAqGD;;;;;GAKG;AACU,QAAA,sBAAsB,GAAuD;IACxF,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC;IAC1B,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,EAAE,YAAY,EAAE,UAAU,CAAC,CAAC;IAClD,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;IAC9E,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;CAC/E,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACU,QAAA,wBAAwB,GAAmE;IACtG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC1B,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC3B,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IACzB,YAAY,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAClC,OAAO,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC7B,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC1B,MAAM,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IAClD,UAAU,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IACtD,QAAQ,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IACpD,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;IAC9B,QAAQ,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;IAClC,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;CAC/B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_helpers.mjs","sourceRoot":"","sources":["../../src/lib/manifest/_helpers.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,IAAI,QAAQ,GAAG,CAAC,CAAC;AAEjB,4DAA4D;AAC5D,MAAM,UAAU,UAAU,CAAC,MAAM,GAAG,IAAI;IACtC,MAAM,IAAI,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACpD,OAAO,GAAG,MAAM,IAAI,IAAI,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC;AACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"_helpers.mjs","sourceRoot":"","sources":["../../src/lib/manifest/_helpers.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,IAAI,QAAQ,GAAG,CAAC,CAAC;AAEjB,4DAA4D;AAC5D,MAAM,UAAU,UAAU,CAAC,MAAM,GAAG,IAAI;IACtC,MAAM,IAAI,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACpD,OAAO,GAAG,MAAM,IAAI,IAAI,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE,CAAC;AACzD,CAAC;AAqGD;;;;;GAKG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAuD;IACxF,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC;IAC1B,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,EAAE,YAAY,EAAE,UAAU,CAAC,CAAC;IAClD,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;IAC9E,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,QAAQ,EAAE,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;CAC/E,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmE;IACtG,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC1B,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC3B,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IACzB,YAAY,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAClC,OAAO,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC7B,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;IAC1B,MAAM,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IAClD,UAAU,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IACtD,QAAQ,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IACpD,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;IAC9B,QAAQ,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;IAClC,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;CAC/B,CAAC"}
|