@sprucelabs/heartwood-view-controllers 111.1.65 → 112.0.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.
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/dialog.schema.js +9 -1
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/lockScreen.schema.d.ts +3 -0
- package/build/.spruce/schemas/heartwoodViewControllers/v2021_02_11/lockScreen.schema.js +111 -0
- package/build/.spruce/schemas/schemas.types.d.ts +466 -294
- package/build/controllerMap.d.ts +2 -0
- package/build/controllerMap.js +2 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/dialog.schema.js +9 -1
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/lockScreen.schema.d.ts +3 -0
- package/build/esm/.spruce/schemas/heartwoodViewControllers/v2021_02_11/lockScreen.schema.js +106 -0
- package/build/esm/.spruce/schemas/schemas.types.d.ts +466 -294
- package/build/esm/controllerMap.d.ts +2 -0
- package/build/esm/controllerMap.js +2 -0
- package/build/esm/index.d.ts +2 -0
- package/build/esm/index.js +2 -0
- package/build/esm/schemas/v2021_02_11/autocompleteInput.builder.d.ts +7 -7
- package/build/esm/schemas/v2021_02_11/dialog.builder.d.ts +9 -0
- package/build/esm/schemas/v2021_02_11/dialog.builder.js +8 -0
- package/build/esm/schemas/v2021_02_11/lockScreen.builder.d.ts +29728 -0
- package/build/esm/schemas/v2021_02_11/lockScreen.builder.js +19 -0
- package/build/esm/skillViewControllers/Abstract.svc.d.ts +7 -7
- package/build/esm/skillViewControllers/Abstract.svc.js +9 -0
- package/build/esm/skillViewControllers/LockScreen.svc.d.ts +13 -0
- package/build/esm/skillViewControllers/LockScreen.svc.js +33 -0
- package/build/esm/tests/AbstractViewControllerTest.d.ts +2 -2
- package/build/esm/tests/utilities/vcAssert.d.ts +1 -1
- package/build/esm/tests/utilities/vcAssert.js +1 -1
- package/build/esm/tests/utilities/vcAssert.utility.d.ts +1 -1
- package/build/esm/types/heartwood.types.d.ts +8 -1
- package/build/esm/utilities/removeUniversalViewOptions.d.ts +1 -1
- package/build/esm/utilities/removeUniversalViewOptions.js +1 -0
- package/build/esm/viewControllers/Confirm.vc.d.ts +7 -8
- package/build/esm/viewControllers/Confirm.vc.js +4 -1
- package/build/esm/viewControllers/Dialog.vc.d.ts +3 -5
- package/build/esm/viewControllers/ViewControllerFactory.d.ts +4 -1
- package/build/esm/viewControllers/ViewControllerFactory.js +8 -8
- package/build/index.d.ts +2 -0
- package/build/index.js +8 -4
- package/build/schemas/v2021_02_11/autocompleteInput.builder.d.ts +7 -7
- package/build/schemas/v2021_02_11/dialog.builder.d.ts +9 -0
- package/build/schemas/v2021_02_11/dialog.builder.js +9 -0
- package/build/schemas/v2021_02_11/lockScreen.builder.d.ts +29728 -0
- package/build/schemas/v2021_02_11/lockScreen.builder.js +28 -0
- package/build/skillViewControllers/Abstract.svc.d.ts +7 -7
- package/build/skillViewControllers/Abstract.svc.js +9 -0
- package/build/skillViewControllers/LockScreen.svc.d.ts +13 -0
- package/build/skillViewControllers/LockScreen.svc.js +26 -0
- package/build/tests/AbstractViewControllerTest.d.ts +2 -2
- package/build/tests/utilities/vcAssert.d.ts +1 -1
- package/build/tests/utilities/vcAssert.js +1 -1
- package/build/tests/utilities/vcAssert.utility.d.ts +1 -1
- package/build/types/heartwood.types.d.ts +8 -1
- package/build/utilities/removeUniversalViewOptions.d.ts +1 -1
- package/build/utilities/removeUniversalViewOptions.js +1 -0
- package/build/viewControllers/Confirm.vc.d.ts +7 -8
- package/build/viewControllers/Confirm.vc.js +4 -1
- package/build/viewControllers/Dialog.vc.d.ts +3 -5
- package/build/viewControllers/ViewControllerFactory.d.ts +4 -1
- package/build/viewControllers/ViewControllerFactory.js +8 -7
- package/package.json +7 -7
|
@@ -5124,6 +5124,166 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
5124
5124
|
interface LayoutEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.LayoutSchema> {
|
|
5125
5125
|
}
|
|
5126
5126
|
}
|
|
5127
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
5128
|
+
interface LockScreen {
|
|
5129
|
+
'id'?: string | undefined | null;
|
|
5130
|
+
/** Controller. */
|
|
5131
|
+
'controller'?: (HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.LockScreen>) | undefined | null;
|
|
5132
|
+
/** Center vertically. */
|
|
5133
|
+
'shouldCenterVertically'?: boolean | undefined | null;
|
|
5134
|
+
/** Full screen. */
|
|
5135
|
+
'isFullScreen'?: boolean | undefined | null;
|
|
5136
|
+
'title'?: string | undefined | null;
|
|
5137
|
+
'subtitle'?: string | undefined | null;
|
|
5138
|
+
'description'?: string | undefined | null;
|
|
5139
|
+
/** Layout. */
|
|
5140
|
+
'layouts'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Layout[] | undefined | null;
|
|
5141
|
+
'leftCards'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Card[] | undefined | null;
|
|
5142
|
+
'rightCards'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Card[] | undefined | null;
|
|
5143
|
+
'topCards'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Card[] | undefined | null;
|
|
5144
|
+
'cards'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Card[] | undefined | null;
|
|
5145
|
+
'bottomCards'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Card[] | undefined | null;
|
|
5146
|
+
'layout'?: ("big-left" | "big-right" | "big-top" | "big-top-left" | "grid") | undefined | null;
|
|
5147
|
+
/** Card controller. */
|
|
5148
|
+
'skillViewController'?: (HeartwoodTypes.SkillViewController) | undefined | null;
|
|
5149
|
+
}
|
|
5150
|
+
interface LockScreenSchema extends SpruceSchema.Schema {
|
|
5151
|
+
id: 'lockScreen';
|
|
5152
|
+
version: 'v2021_02_11';
|
|
5153
|
+
namespace: 'HeartwoodViewControllers';
|
|
5154
|
+
name: 'lock screen';
|
|
5155
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
5156
|
+
fields: {
|
|
5157
|
+
/** . */
|
|
5158
|
+
'id': {
|
|
5159
|
+
type: 'id';
|
|
5160
|
+
isPrivate: true;
|
|
5161
|
+
options: undefined;
|
|
5162
|
+
};
|
|
5163
|
+
/** Controller. */
|
|
5164
|
+
'controller': {
|
|
5165
|
+
label: 'Controller';
|
|
5166
|
+
type: 'raw';
|
|
5167
|
+
options: {
|
|
5168
|
+
valueType: `HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.LockScreen>`;
|
|
5169
|
+
};
|
|
5170
|
+
};
|
|
5171
|
+
/** Center vertically. */
|
|
5172
|
+
'shouldCenterVertically': {
|
|
5173
|
+
label: 'Center vertically';
|
|
5174
|
+
type: 'boolean';
|
|
5175
|
+
defaultValue: false;
|
|
5176
|
+
options: undefined;
|
|
5177
|
+
};
|
|
5178
|
+
/** Full screen. */
|
|
5179
|
+
'isFullScreen': {
|
|
5180
|
+
label: 'Full screen';
|
|
5181
|
+
type: 'boolean';
|
|
5182
|
+
options: undefined;
|
|
5183
|
+
};
|
|
5184
|
+
/** . */
|
|
5185
|
+
'title': {
|
|
5186
|
+
type: 'text';
|
|
5187
|
+
options: undefined;
|
|
5188
|
+
};
|
|
5189
|
+
/** . */
|
|
5190
|
+
'subtitle': {
|
|
5191
|
+
type: 'text';
|
|
5192
|
+
options: undefined;
|
|
5193
|
+
};
|
|
5194
|
+
/** . */
|
|
5195
|
+
'description': {
|
|
5196
|
+
type: 'text';
|
|
5197
|
+
options: undefined;
|
|
5198
|
+
};
|
|
5199
|
+
/** Layout. */
|
|
5200
|
+
'layouts': {
|
|
5201
|
+
label: 'Layout';
|
|
5202
|
+
type: 'schema';
|
|
5203
|
+
isArray: true;
|
|
5204
|
+
options: {
|
|
5205
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.LayoutSchema;
|
|
5206
|
+
};
|
|
5207
|
+
};
|
|
5208
|
+
/** . */
|
|
5209
|
+
'leftCards': {
|
|
5210
|
+
type: 'schema';
|
|
5211
|
+
isArray: true;
|
|
5212
|
+
minArrayLength: 0;
|
|
5213
|
+
options: {
|
|
5214
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSchema;
|
|
5215
|
+
};
|
|
5216
|
+
};
|
|
5217
|
+
/** . */
|
|
5218
|
+
'rightCards': {
|
|
5219
|
+
type: 'schema';
|
|
5220
|
+
isArray: true;
|
|
5221
|
+
minArrayLength: 0;
|
|
5222
|
+
options: {
|
|
5223
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSchema;
|
|
5224
|
+
};
|
|
5225
|
+
};
|
|
5226
|
+
/** . */
|
|
5227
|
+
'topCards': {
|
|
5228
|
+
type: 'schema';
|
|
5229
|
+
isArray: true;
|
|
5230
|
+
minArrayLength: 0;
|
|
5231
|
+
options: {
|
|
5232
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSchema;
|
|
5233
|
+
};
|
|
5234
|
+
};
|
|
5235
|
+
/** . */
|
|
5236
|
+
'cards': {
|
|
5237
|
+
type: 'schema';
|
|
5238
|
+
isArray: true;
|
|
5239
|
+
minArrayLength: 0;
|
|
5240
|
+
options: {
|
|
5241
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSchema;
|
|
5242
|
+
};
|
|
5243
|
+
};
|
|
5244
|
+
/** . */
|
|
5245
|
+
'bottomCards': {
|
|
5246
|
+
type: 'schema';
|
|
5247
|
+
isArray: true;
|
|
5248
|
+
options: {
|
|
5249
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSchema;
|
|
5250
|
+
};
|
|
5251
|
+
};
|
|
5252
|
+
/** . */
|
|
5253
|
+
'layout': {
|
|
5254
|
+
type: 'select';
|
|
5255
|
+
options: {
|
|
5256
|
+
choices: [{
|
|
5257
|
+
"value": "big-left";
|
|
5258
|
+
"label": "Big left";
|
|
5259
|
+
}, {
|
|
5260
|
+
"value": "big-right";
|
|
5261
|
+
"label": "Big right";
|
|
5262
|
+
}, {
|
|
5263
|
+
"value": "big-top";
|
|
5264
|
+
"label": "Big top";
|
|
5265
|
+
}, {
|
|
5266
|
+
"value": "big-top-left";
|
|
5267
|
+
"label": "Big top left";
|
|
5268
|
+
}, {
|
|
5269
|
+
"value": "grid";
|
|
5270
|
+
"label": "Grid";
|
|
5271
|
+
}];
|
|
5272
|
+
};
|
|
5273
|
+
};
|
|
5274
|
+
/** Card controller. */
|
|
5275
|
+
'skillViewController': {
|
|
5276
|
+
label: 'Card controller';
|
|
5277
|
+
type: 'raw';
|
|
5278
|
+
options: {
|
|
5279
|
+
valueType: `HeartwoodTypes.SkillViewController`;
|
|
5280
|
+
};
|
|
5281
|
+
};
|
|
5282
|
+
};
|
|
5283
|
+
}
|
|
5284
|
+
interface LockScreenEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.LockScreenSchema> {
|
|
5285
|
+
}
|
|
5286
|
+
}
|
|
5127
5287
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
5128
5288
|
interface FormBuilderImportExportPage<S extends SpruceSchema.Schema = SpruceSchema.Schema> {
|
|
5129
5289
|
/** Page title. */
|
|
@@ -6585,6 +6745,103 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
6585
6745
|
interface FancyIconEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FancyIconSchema> {
|
|
6586
6746
|
}
|
|
6587
6747
|
}
|
|
6748
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
6749
|
+
interface CardBody {
|
|
6750
|
+
/** Show section separators. This will make each section render with a border. */
|
|
6751
|
+
'shouldShowSectionSeparators'?: boolean | undefined | null;
|
|
6752
|
+
/** Busy. */
|
|
6753
|
+
'isBusy'?: boolean | undefined | null;
|
|
6754
|
+
/** Swipe controller. */
|
|
6755
|
+
'swipeController'?: ((controller: HeartwoodTypes.SwipeController) => void) | undefined | null;
|
|
6756
|
+
/** Swipe. */
|
|
6757
|
+
'shouldEnableSectionSwiping'?: boolean | undefined | null;
|
|
6758
|
+
/** Swipe break into cards on landscape. */
|
|
6759
|
+
'shouldSwipeBreakIntoCardsOnLandscape'?: boolean | undefined | null;
|
|
6760
|
+
/** Select slide title handler. */
|
|
6761
|
+
'onSelectSlideTitle'?: ((id: number) => void) | undefined | null;
|
|
6762
|
+
/** Slide change callback. */
|
|
6763
|
+
'onChangeSlide'?: ((slide: number) => void) | undefined | null;
|
|
6764
|
+
/** Render sections as grid. */
|
|
6765
|
+
'shouldRenderSectionsAsGrid'?: boolean | undefined | null;
|
|
6766
|
+
/** Sections. */
|
|
6767
|
+
'sections'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSection[] | undefined | null;
|
|
6768
|
+
}
|
|
6769
|
+
interface CardBodySchema extends SpruceSchema.Schema {
|
|
6770
|
+
id: 'cardBody';
|
|
6771
|
+
version: 'v2021_02_11';
|
|
6772
|
+
namespace: 'HeartwoodViewControllers';
|
|
6773
|
+
name: '';
|
|
6774
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
6775
|
+
fields: {
|
|
6776
|
+
/** Show section separators. This will make each section render with a border. */
|
|
6777
|
+
'shouldShowSectionSeparators': {
|
|
6778
|
+
label: 'Show section separators';
|
|
6779
|
+
type: 'boolean';
|
|
6780
|
+
hint: 'This will make each section render with a border.';
|
|
6781
|
+
options: undefined;
|
|
6782
|
+
};
|
|
6783
|
+
/** Busy. */
|
|
6784
|
+
'isBusy': {
|
|
6785
|
+
label: 'Busy';
|
|
6786
|
+
type: 'boolean';
|
|
6787
|
+
options: undefined;
|
|
6788
|
+
};
|
|
6789
|
+
/** Swipe controller. */
|
|
6790
|
+
'swipeController': {
|
|
6791
|
+
label: 'Swipe controller';
|
|
6792
|
+
type: 'raw';
|
|
6793
|
+
options: {
|
|
6794
|
+
valueType: `(controller: HeartwoodTypes.SwipeController) => void`;
|
|
6795
|
+
};
|
|
6796
|
+
};
|
|
6797
|
+
/** Swipe. */
|
|
6798
|
+
'shouldEnableSectionSwiping': {
|
|
6799
|
+
label: 'Swipe';
|
|
6800
|
+
type: 'boolean';
|
|
6801
|
+
options: undefined;
|
|
6802
|
+
};
|
|
6803
|
+
/** Swipe break into cards on landscape. */
|
|
6804
|
+
'shouldSwipeBreakIntoCardsOnLandscape': {
|
|
6805
|
+
label: 'Swipe break into cards on landscape';
|
|
6806
|
+
type: 'boolean';
|
|
6807
|
+
options: undefined;
|
|
6808
|
+
};
|
|
6809
|
+
/** Select slide title handler. */
|
|
6810
|
+
'onSelectSlideTitle': {
|
|
6811
|
+
label: 'Select slide title handler';
|
|
6812
|
+
type: 'raw';
|
|
6813
|
+
options: {
|
|
6814
|
+
valueType: `(id: number) => void`;
|
|
6815
|
+
};
|
|
6816
|
+
};
|
|
6817
|
+
/** Slide change callback. */
|
|
6818
|
+
'onChangeSlide': {
|
|
6819
|
+
label: 'Slide change callback';
|
|
6820
|
+
type: 'raw';
|
|
6821
|
+
options: {
|
|
6822
|
+
valueType: `(slide: number) => void`;
|
|
6823
|
+
};
|
|
6824
|
+
};
|
|
6825
|
+
/** Render sections as grid. */
|
|
6826
|
+
'shouldRenderSectionsAsGrid': {
|
|
6827
|
+
label: 'Render sections as grid';
|
|
6828
|
+
type: 'boolean';
|
|
6829
|
+
options: undefined;
|
|
6830
|
+
};
|
|
6831
|
+
/** Sections. */
|
|
6832
|
+
'sections': {
|
|
6833
|
+
label: 'Sections';
|
|
6834
|
+
type: 'schema';
|
|
6835
|
+
isArray: true;
|
|
6836
|
+
options: {
|
|
6837
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSectionSchema;
|
|
6838
|
+
};
|
|
6839
|
+
};
|
|
6840
|
+
};
|
|
6841
|
+
}
|
|
6842
|
+
interface CardBodyEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardBodySchema> {
|
|
6843
|
+
}
|
|
6844
|
+
}
|
|
6588
6845
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
6589
6846
|
interface Dialog {
|
|
6590
6847
|
'id'?: string | undefined | null;
|
|
@@ -6607,8 +6864,10 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
6607
6864
|
'shouldShowCloseButton'?: boolean | undefined | null;
|
|
6608
6865
|
/** Card controller. */
|
|
6609
6866
|
'cardController'?: (HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Card>) | undefined | null;
|
|
6610
|
-
/** Close callback. */
|
|
6867
|
+
/** Close callback. Called when the dialog is closed */
|
|
6611
6868
|
'onClose'?: (() => Promise<void | boolean> | void | boolean) | undefined | null;
|
|
6869
|
+
/** Close handler. Called to actually close the dialog */
|
|
6870
|
+
'closeHandler'?: (() => Promise<void | boolean> | void | boolean) | undefined | null;
|
|
6612
6871
|
}
|
|
6613
6872
|
interface DialogSchema extends SpruceSchema.Schema {
|
|
6614
6873
|
id: 'dialog';
|
|
@@ -6696,10 +6955,20 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
6696
6955
|
valueType: `HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Card>`;
|
|
6697
6956
|
};
|
|
6698
6957
|
};
|
|
6699
|
-
/** Close callback. */
|
|
6958
|
+
/** Close callback. Called when the dialog is closed */
|
|
6700
6959
|
'onClose': {
|
|
6701
6960
|
label: 'Close callback';
|
|
6702
6961
|
type: 'raw';
|
|
6962
|
+
hint: 'Called when the dialog is closed';
|
|
6963
|
+
options: {
|
|
6964
|
+
valueType: `() => Promise<void | boolean> | void | boolean`;
|
|
6965
|
+
};
|
|
6966
|
+
};
|
|
6967
|
+
/** Close handler. Called to actually close the dialog */
|
|
6968
|
+
'closeHandler': {
|
|
6969
|
+
label: 'Close handler';
|
|
6970
|
+
type: 'raw';
|
|
6971
|
+
hint: 'Called to actually close the dialog';
|
|
6703
6972
|
options: {
|
|
6704
6973
|
valueType: `() => Promise<void | boolean> | void | boolean`;
|
|
6705
6974
|
};
|
|
@@ -6741,7 +7010,201 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
6741
7010
|
}
|
|
6742
7011
|
}
|
|
6743
7012
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
6744
|
-
interface
|
|
7013
|
+
interface Feed {
|
|
7014
|
+
'items': SpruceSchemas.Spruce.v2020_07_22.FeedItem[];
|
|
7015
|
+
'onSubmitMessage'?: (HeartwoodTypes.OnSubmitFeedMessageHandler) | undefined | null;
|
|
7016
|
+
'controller'?: (HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>) | undefined | null;
|
|
7017
|
+
}
|
|
7018
|
+
interface FeedSchema extends SpruceSchema.Schema {
|
|
7019
|
+
id: 'feed';
|
|
7020
|
+
version: 'v2021_02_11';
|
|
7021
|
+
namespace: 'HeartwoodViewControllers';
|
|
7022
|
+
name: 'Feed';
|
|
7023
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7024
|
+
fields: {
|
|
7025
|
+
/** . */
|
|
7026
|
+
'items': {
|
|
7027
|
+
type: 'schema';
|
|
7028
|
+
isRequired: true;
|
|
7029
|
+
isArray: true;
|
|
7030
|
+
minArrayLength: 0;
|
|
7031
|
+
options: {
|
|
7032
|
+
schema: SpruceSchemas.Spruce.v2020_07_22.FeedItemSchema;
|
|
7033
|
+
};
|
|
7034
|
+
};
|
|
7035
|
+
/** . */
|
|
7036
|
+
'onSubmitMessage': {
|
|
7037
|
+
type: 'raw';
|
|
7038
|
+
options: {
|
|
7039
|
+
valueType: `HeartwoodTypes.OnSubmitFeedMessageHandler`;
|
|
7040
|
+
};
|
|
7041
|
+
};
|
|
7042
|
+
/** . */
|
|
7043
|
+
'controller': {
|
|
7044
|
+
type: 'raw';
|
|
7045
|
+
options: {
|
|
7046
|
+
valueType: `HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>`;
|
|
7047
|
+
};
|
|
7048
|
+
};
|
|
7049
|
+
};
|
|
7050
|
+
}
|
|
7051
|
+
interface FeedEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FeedSchema> {
|
|
7052
|
+
}
|
|
7053
|
+
}
|
|
7054
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7055
|
+
interface PolarAreaDataItem {
|
|
7056
|
+
'label': string;
|
|
7057
|
+
'value': number;
|
|
7058
|
+
}
|
|
7059
|
+
interface PolarAreaDataItemSchema extends SpruceSchema.Schema {
|
|
7060
|
+
id: 'polarAreaDataItem';
|
|
7061
|
+
version: 'v2021_02_11';
|
|
7062
|
+
namespace: 'HeartwoodViewControllers';
|
|
7063
|
+
name: '';
|
|
7064
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7065
|
+
fields: {
|
|
7066
|
+
/** . */
|
|
7067
|
+
'label': {
|
|
7068
|
+
type: 'text';
|
|
7069
|
+
isRequired: true;
|
|
7070
|
+
options: undefined;
|
|
7071
|
+
};
|
|
7072
|
+
/** . */
|
|
7073
|
+
'value': {
|
|
7074
|
+
type: 'number';
|
|
7075
|
+
isRequired: true;
|
|
7076
|
+
options: undefined;
|
|
7077
|
+
};
|
|
7078
|
+
};
|
|
7079
|
+
}
|
|
7080
|
+
interface PolarAreaDataItemEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItemSchema> {
|
|
7081
|
+
}
|
|
7082
|
+
}
|
|
7083
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7084
|
+
interface PolarArea {
|
|
7085
|
+
'id'?: string | undefined | null;
|
|
7086
|
+
/** Controller. */
|
|
7087
|
+
'controller'?: (HeartwoodTypes.PolarAreaViewController) | undefined | null;
|
|
7088
|
+
'data': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItem[];
|
|
7089
|
+
}
|
|
7090
|
+
interface PolarAreaSchema extends SpruceSchema.Schema {
|
|
7091
|
+
id: 'polarArea';
|
|
7092
|
+
version: 'v2021_02_11';
|
|
7093
|
+
namespace: 'HeartwoodViewControllers';
|
|
7094
|
+
name: 'Polar Area';
|
|
7095
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7096
|
+
fields: {
|
|
7097
|
+
/** . */
|
|
7098
|
+
'id': {
|
|
7099
|
+
type: 'id';
|
|
7100
|
+
options: undefined;
|
|
7101
|
+
};
|
|
7102
|
+
/** Controller. */
|
|
7103
|
+
'controller': {
|
|
7104
|
+
label: 'Controller';
|
|
7105
|
+
type: 'raw';
|
|
7106
|
+
options: {
|
|
7107
|
+
valueType: `HeartwoodTypes.PolarAreaViewController`;
|
|
7108
|
+
};
|
|
7109
|
+
};
|
|
7110
|
+
/** . */
|
|
7111
|
+
'data': {
|
|
7112
|
+
type: 'schema';
|
|
7113
|
+
isRequired: true;
|
|
7114
|
+
isArray: true;
|
|
7115
|
+
options: {
|
|
7116
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItemSchema;
|
|
7117
|
+
};
|
|
7118
|
+
};
|
|
7119
|
+
};
|
|
7120
|
+
}
|
|
7121
|
+
interface PolarAreaEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaSchema> {
|
|
7122
|
+
}
|
|
7123
|
+
}
|
|
7124
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7125
|
+
interface ReceiptTotal {
|
|
7126
|
+
'label': string;
|
|
7127
|
+
'value': string;
|
|
7128
|
+
'shouldBeEmphasized'?: boolean | undefined | null;
|
|
7129
|
+
'shouldBeCalledOut'?: boolean | undefined | null;
|
|
7130
|
+
}
|
|
7131
|
+
interface ReceiptTotalSchema extends SpruceSchema.Schema {
|
|
7132
|
+
id: 'receiptTotal';
|
|
7133
|
+
version: 'v2021_02_11';
|
|
7134
|
+
namespace: 'HeartwoodViewControllers';
|
|
7135
|
+
name: '';
|
|
7136
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7137
|
+
fields: {
|
|
7138
|
+
/** . */
|
|
7139
|
+
'label': {
|
|
7140
|
+
type: 'text';
|
|
7141
|
+
isRequired: true;
|
|
7142
|
+
options: undefined;
|
|
7143
|
+
};
|
|
7144
|
+
/** . */
|
|
7145
|
+
'value': {
|
|
7146
|
+
type: 'text';
|
|
7147
|
+
isRequired: true;
|
|
7148
|
+
options: undefined;
|
|
7149
|
+
};
|
|
7150
|
+
/** . */
|
|
7151
|
+
'shouldBeEmphasized': {
|
|
7152
|
+
type: 'boolean';
|
|
7153
|
+
options: undefined;
|
|
7154
|
+
};
|
|
7155
|
+
/** . */
|
|
7156
|
+
'shouldBeCalledOut': {
|
|
7157
|
+
type: 'boolean';
|
|
7158
|
+
options: undefined;
|
|
7159
|
+
};
|
|
7160
|
+
};
|
|
7161
|
+
}
|
|
7162
|
+
interface ReceiptTotalEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotalSchema> {
|
|
7163
|
+
}
|
|
7164
|
+
}
|
|
7165
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7166
|
+
interface Receipt {
|
|
7167
|
+
'header'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeader | undefined | null;
|
|
7168
|
+
'sections'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSection[] | undefined | null;
|
|
7169
|
+
'totals'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotal[] | undefined | null;
|
|
7170
|
+
}
|
|
7171
|
+
interface ReceiptSchema extends SpruceSchema.Schema {
|
|
7172
|
+
id: 'receipt';
|
|
7173
|
+
version: 'v2021_02_11';
|
|
7174
|
+
namespace: 'HeartwoodViewControllers';
|
|
7175
|
+
name: 'Receipt';
|
|
7176
|
+
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7177
|
+
fields: {
|
|
7178
|
+
/** . */
|
|
7179
|
+
'header': {
|
|
7180
|
+
type: 'schema';
|
|
7181
|
+
options: {
|
|
7182
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeaderSchema;
|
|
7183
|
+
};
|
|
7184
|
+
};
|
|
7185
|
+
/** . */
|
|
7186
|
+
'sections': {
|
|
7187
|
+
type: 'schema';
|
|
7188
|
+
isArray: true;
|
|
7189
|
+
options: {
|
|
7190
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSectionSchema;
|
|
7191
|
+
};
|
|
7192
|
+
};
|
|
7193
|
+
/** . */
|
|
7194
|
+
'totals': {
|
|
7195
|
+
type: 'schema';
|
|
7196
|
+
isArray: true;
|
|
7197
|
+
options: {
|
|
7198
|
+
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotalSchema;
|
|
7199
|
+
};
|
|
7200
|
+
};
|
|
7201
|
+
};
|
|
7202
|
+
}
|
|
7203
|
+
interface ReceiptEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSchema> {
|
|
7204
|
+
}
|
|
7205
|
+
}
|
|
7206
|
+
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7207
|
+
interface CardSection {
|
|
6745
7208
|
'id'?: string | undefined | null;
|
|
6746
7209
|
/** Title. */
|
|
6747
7210
|
'title'?: string | undefined | null;
|
|
@@ -7064,256 +7527,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7064
7527
|
interface CardSectionEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSectionSchema> {
|
|
7065
7528
|
}
|
|
7066
7529
|
}
|
|
7067
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7068
|
-
interface CardBody {
|
|
7069
|
-
/** Show section separators. This will make each section render with a border. */
|
|
7070
|
-
'shouldShowSectionSeparators'?: boolean | undefined | null;
|
|
7071
|
-
/** Busy. */
|
|
7072
|
-
'isBusy'?: boolean | undefined | null;
|
|
7073
|
-
/** Swipe controller. */
|
|
7074
|
-
'swipeController'?: ((controller: HeartwoodTypes.SwipeController) => void) | undefined | null;
|
|
7075
|
-
/** Swipe. */
|
|
7076
|
-
'shouldEnableSectionSwiping'?: boolean | undefined | null;
|
|
7077
|
-
/** Swipe break into cards on landscape. */
|
|
7078
|
-
'shouldSwipeBreakIntoCardsOnLandscape'?: boolean | undefined | null;
|
|
7079
|
-
/** Select slide title handler. */
|
|
7080
|
-
'onSelectSlideTitle'?: ((id: number) => void) | undefined | null;
|
|
7081
|
-
/** Slide change callback. */
|
|
7082
|
-
'onChangeSlide'?: ((slide: number) => void) | undefined | null;
|
|
7083
|
-
/** Render sections as grid. */
|
|
7084
|
-
'shouldRenderSectionsAsGrid'?: boolean | undefined | null;
|
|
7085
|
-
/** Sections. */
|
|
7086
|
-
'sections'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSection[] | undefined | null;
|
|
7087
|
-
}
|
|
7088
|
-
interface CardBodySchema extends SpruceSchema.Schema {
|
|
7089
|
-
id: 'cardBody';
|
|
7090
|
-
version: 'v2021_02_11';
|
|
7091
|
-
namespace: 'HeartwoodViewControllers';
|
|
7092
|
-
name: '';
|
|
7093
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7094
|
-
fields: {
|
|
7095
|
-
/** Show section separators. This will make each section render with a border. */
|
|
7096
|
-
'shouldShowSectionSeparators': {
|
|
7097
|
-
label: 'Show section separators';
|
|
7098
|
-
type: 'boolean';
|
|
7099
|
-
hint: 'This will make each section render with a border.';
|
|
7100
|
-
options: undefined;
|
|
7101
|
-
};
|
|
7102
|
-
/** Busy. */
|
|
7103
|
-
'isBusy': {
|
|
7104
|
-
label: 'Busy';
|
|
7105
|
-
type: 'boolean';
|
|
7106
|
-
options: undefined;
|
|
7107
|
-
};
|
|
7108
|
-
/** Swipe controller. */
|
|
7109
|
-
'swipeController': {
|
|
7110
|
-
label: 'Swipe controller';
|
|
7111
|
-
type: 'raw';
|
|
7112
|
-
options: {
|
|
7113
|
-
valueType: `(controller: HeartwoodTypes.SwipeController) => void`;
|
|
7114
|
-
};
|
|
7115
|
-
};
|
|
7116
|
-
/** Swipe. */
|
|
7117
|
-
'shouldEnableSectionSwiping': {
|
|
7118
|
-
label: 'Swipe';
|
|
7119
|
-
type: 'boolean';
|
|
7120
|
-
options: undefined;
|
|
7121
|
-
};
|
|
7122
|
-
/** Swipe break into cards on landscape. */
|
|
7123
|
-
'shouldSwipeBreakIntoCardsOnLandscape': {
|
|
7124
|
-
label: 'Swipe break into cards on landscape';
|
|
7125
|
-
type: 'boolean';
|
|
7126
|
-
options: undefined;
|
|
7127
|
-
};
|
|
7128
|
-
/** Select slide title handler. */
|
|
7129
|
-
'onSelectSlideTitle': {
|
|
7130
|
-
label: 'Select slide title handler';
|
|
7131
|
-
type: 'raw';
|
|
7132
|
-
options: {
|
|
7133
|
-
valueType: `(id: number) => void`;
|
|
7134
|
-
};
|
|
7135
|
-
};
|
|
7136
|
-
/** Slide change callback. */
|
|
7137
|
-
'onChangeSlide': {
|
|
7138
|
-
label: 'Slide change callback';
|
|
7139
|
-
type: 'raw';
|
|
7140
|
-
options: {
|
|
7141
|
-
valueType: `(slide: number) => void`;
|
|
7142
|
-
};
|
|
7143
|
-
};
|
|
7144
|
-
/** Render sections as grid. */
|
|
7145
|
-
'shouldRenderSectionsAsGrid': {
|
|
7146
|
-
label: 'Render sections as grid';
|
|
7147
|
-
type: 'boolean';
|
|
7148
|
-
options: undefined;
|
|
7149
|
-
};
|
|
7150
|
-
/** Sections. */
|
|
7151
|
-
'sections': {
|
|
7152
|
-
label: 'Sections';
|
|
7153
|
-
type: 'schema';
|
|
7154
|
-
isArray: true;
|
|
7155
|
-
options: {
|
|
7156
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardSectionSchema;
|
|
7157
|
-
};
|
|
7158
|
-
};
|
|
7159
|
-
};
|
|
7160
|
-
}
|
|
7161
|
-
interface CardBodyEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.CardBodySchema> {
|
|
7162
|
-
}
|
|
7163
|
-
}
|
|
7164
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7165
|
-
interface Feed {
|
|
7166
|
-
'items': SpruceSchemas.Spruce.v2020_07_22.FeedItem[];
|
|
7167
|
-
'onSubmitMessage'?: (HeartwoodTypes.OnSubmitFeedMessageHandler) | undefined | null;
|
|
7168
|
-
'controller'?: (HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>) | undefined | null;
|
|
7169
|
-
}
|
|
7170
|
-
interface FeedSchema extends SpruceSchema.Schema {
|
|
7171
|
-
id: 'feed';
|
|
7172
|
-
version: 'v2021_02_11';
|
|
7173
|
-
namespace: 'HeartwoodViewControllers';
|
|
7174
|
-
name: 'Feed';
|
|
7175
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7176
|
-
fields: {
|
|
7177
|
-
/** . */
|
|
7178
|
-
'items': {
|
|
7179
|
-
type: 'schema';
|
|
7180
|
-
isRequired: true;
|
|
7181
|
-
isArray: true;
|
|
7182
|
-
minArrayLength: 0;
|
|
7183
|
-
options: {
|
|
7184
|
-
schema: SpruceSchemas.Spruce.v2020_07_22.FeedItemSchema;
|
|
7185
|
-
};
|
|
7186
|
-
};
|
|
7187
|
-
/** . */
|
|
7188
|
-
'onSubmitMessage': {
|
|
7189
|
-
type: 'raw';
|
|
7190
|
-
options: {
|
|
7191
|
-
valueType: `HeartwoodTypes.OnSubmitFeedMessageHandler`;
|
|
7192
|
-
};
|
|
7193
|
-
};
|
|
7194
|
-
/** . */
|
|
7195
|
-
'controller': {
|
|
7196
|
-
type: 'raw';
|
|
7197
|
-
options: {
|
|
7198
|
-
valueType: `HeartwoodTypes.ViewController<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.Feed>`;
|
|
7199
|
-
};
|
|
7200
|
-
};
|
|
7201
|
-
};
|
|
7202
|
-
}
|
|
7203
|
-
interface FeedEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.FeedSchema> {
|
|
7204
|
-
}
|
|
7205
|
-
}
|
|
7206
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7207
|
-
interface PolarAreaDataItem {
|
|
7208
|
-
'label': string;
|
|
7209
|
-
'value': number;
|
|
7210
|
-
}
|
|
7211
|
-
interface PolarAreaDataItemSchema extends SpruceSchema.Schema {
|
|
7212
|
-
id: 'polarAreaDataItem';
|
|
7213
|
-
version: 'v2021_02_11';
|
|
7214
|
-
namespace: 'HeartwoodViewControllers';
|
|
7215
|
-
name: '';
|
|
7216
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7217
|
-
fields: {
|
|
7218
|
-
/** . */
|
|
7219
|
-
'label': {
|
|
7220
|
-
type: 'text';
|
|
7221
|
-
isRequired: true;
|
|
7222
|
-
options: undefined;
|
|
7223
|
-
};
|
|
7224
|
-
/** . */
|
|
7225
|
-
'value': {
|
|
7226
|
-
type: 'number';
|
|
7227
|
-
isRequired: true;
|
|
7228
|
-
options: undefined;
|
|
7229
|
-
};
|
|
7230
|
-
};
|
|
7231
|
-
}
|
|
7232
|
-
interface PolarAreaDataItemEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItemSchema> {
|
|
7233
|
-
}
|
|
7234
|
-
}
|
|
7235
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7236
|
-
interface PolarArea {
|
|
7237
|
-
'id'?: string | undefined | null;
|
|
7238
|
-
/** Controller. */
|
|
7239
|
-
'controller'?: (HeartwoodTypes.PolarAreaViewController) | undefined | null;
|
|
7240
|
-
'data': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItem[];
|
|
7241
|
-
}
|
|
7242
|
-
interface PolarAreaSchema extends SpruceSchema.Schema {
|
|
7243
|
-
id: 'polarArea';
|
|
7244
|
-
version: 'v2021_02_11';
|
|
7245
|
-
namespace: 'HeartwoodViewControllers';
|
|
7246
|
-
name: 'Polar Area';
|
|
7247
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7248
|
-
fields: {
|
|
7249
|
-
/** . */
|
|
7250
|
-
'id': {
|
|
7251
|
-
type: 'id';
|
|
7252
|
-
options: undefined;
|
|
7253
|
-
};
|
|
7254
|
-
/** Controller. */
|
|
7255
|
-
'controller': {
|
|
7256
|
-
label: 'Controller';
|
|
7257
|
-
type: 'raw';
|
|
7258
|
-
options: {
|
|
7259
|
-
valueType: `HeartwoodTypes.PolarAreaViewController`;
|
|
7260
|
-
};
|
|
7261
|
-
};
|
|
7262
|
-
/** . */
|
|
7263
|
-
'data': {
|
|
7264
|
-
type: 'schema';
|
|
7265
|
-
isRequired: true;
|
|
7266
|
-
isArray: true;
|
|
7267
|
-
options: {
|
|
7268
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaDataItemSchema;
|
|
7269
|
-
};
|
|
7270
|
-
};
|
|
7271
|
-
};
|
|
7272
|
-
}
|
|
7273
|
-
interface PolarAreaEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.PolarAreaSchema> {
|
|
7274
|
-
}
|
|
7275
|
-
}
|
|
7276
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7277
|
-
interface ReceiptTotal {
|
|
7278
|
-
'label': string;
|
|
7279
|
-
'value': string;
|
|
7280
|
-
'shouldBeEmphasized'?: boolean | undefined | null;
|
|
7281
|
-
'shouldBeCalledOut'?: boolean | undefined | null;
|
|
7282
|
-
}
|
|
7283
|
-
interface ReceiptTotalSchema extends SpruceSchema.Schema {
|
|
7284
|
-
id: 'receiptTotal';
|
|
7285
|
-
version: 'v2021_02_11';
|
|
7286
|
-
namespace: 'HeartwoodViewControllers';
|
|
7287
|
-
name: '';
|
|
7288
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7289
|
-
fields: {
|
|
7290
|
-
/** . */
|
|
7291
|
-
'label': {
|
|
7292
|
-
type: 'text';
|
|
7293
|
-
isRequired: true;
|
|
7294
|
-
options: undefined;
|
|
7295
|
-
};
|
|
7296
|
-
/** . */
|
|
7297
|
-
'value': {
|
|
7298
|
-
type: 'text';
|
|
7299
|
-
isRequired: true;
|
|
7300
|
-
options: undefined;
|
|
7301
|
-
};
|
|
7302
|
-
/** . */
|
|
7303
|
-
'shouldBeEmphasized': {
|
|
7304
|
-
type: 'boolean';
|
|
7305
|
-
options: undefined;
|
|
7306
|
-
};
|
|
7307
|
-
/** . */
|
|
7308
|
-
'shouldBeCalledOut': {
|
|
7309
|
-
type: 'boolean';
|
|
7310
|
-
options: undefined;
|
|
7311
|
-
};
|
|
7312
|
-
};
|
|
7313
|
-
}
|
|
7314
|
-
interface ReceiptTotalEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotalSchema> {
|
|
7315
|
-
}
|
|
7316
|
-
}
|
|
7317
7530
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7318
7531
|
interface ReceiptLineItem {
|
|
7319
7532
|
'id'?: string | undefined | null;
|
|
@@ -7419,47 +7632,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
7419
7632
|
interface ReceiptHeaderEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeaderSchema> {
|
|
7420
7633
|
}
|
|
7421
7634
|
}
|
|
7422
|
-
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7423
|
-
interface Receipt {
|
|
7424
|
-
'header'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeader | undefined | null;
|
|
7425
|
-
'sections'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSection[] | undefined | null;
|
|
7426
|
-
'totals'?: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotal[] | undefined | null;
|
|
7427
|
-
}
|
|
7428
|
-
interface ReceiptSchema extends SpruceSchema.Schema {
|
|
7429
|
-
id: 'receipt';
|
|
7430
|
-
version: 'v2021_02_11';
|
|
7431
|
-
namespace: 'HeartwoodViewControllers';
|
|
7432
|
-
name: 'Receipt';
|
|
7433
|
-
moduleToImportFromWhenRemote: '@sprucelabs/heartwood-view-controllers';
|
|
7434
|
-
fields: {
|
|
7435
|
-
/** . */
|
|
7436
|
-
'header': {
|
|
7437
|
-
type: 'schema';
|
|
7438
|
-
options: {
|
|
7439
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptHeaderSchema;
|
|
7440
|
-
};
|
|
7441
|
-
};
|
|
7442
|
-
/** . */
|
|
7443
|
-
'sections': {
|
|
7444
|
-
type: 'schema';
|
|
7445
|
-
isArray: true;
|
|
7446
|
-
options: {
|
|
7447
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSectionSchema;
|
|
7448
|
-
};
|
|
7449
|
-
};
|
|
7450
|
-
/** . */
|
|
7451
|
-
'totals': {
|
|
7452
|
-
type: 'schema';
|
|
7453
|
-
isArray: true;
|
|
7454
|
-
options: {
|
|
7455
|
-
schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptTotalSchema;
|
|
7456
|
-
};
|
|
7457
|
-
};
|
|
7458
|
-
};
|
|
7459
|
-
}
|
|
7460
|
-
interface ReceiptEntity extends SchemaEntity<SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ReceiptSchema> {
|
|
7461
|
-
}
|
|
7462
|
-
}
|
|
7463
7635
|
namespace SpruceSchemas.HeartwoodViewControllers.v2021_02_11 {
|
|
7464
7636
|
interface Ratings {
|
|
7465
7637
|
/** Value. A number between 0-1. */
|