@rockrms/obsidian-framework 17.3.1 → 17.5.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rockrms/obsidian-framework",
3
3
  "description": "Type definitions to allow building a plugin against the Obsidian framework.",
4
- "version": "17.3.1",
4
+ "version": "17.5.2",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {},
7
7
  "exports": "./types/*.d.ts",
@@ -88,6 +88,14 @@ declare const _default: import("vue").DefineComponent<{
88
88
  type: PropType<string>;
89
89
  default: string;
90
90
  };
91
+ /**
92
+ * Normally the column will does not display the seconds (ss).
93
+ * If this is set to `true` then it will show the seconds as well.
94
+ */
95
+ showSeconds: {
96
+ type: PropType<boolean>;
97
+ default: boolean;
98
+ };
91
99
  name: {
92
100
  type: PropType<string>;
93
101
  default: "";
@@ -221,6 +229,14 @@ declare const _default: import("vue").DefineComponent<{
221
229
  type: PropType<string>;
222
230
  default: string;
223
231
  };
232
+ /**
233
+ * Normally the column will does not display the seconds (ss).
234
+ * If this is set to `true` then it will show the seconds as well.
235
+ */
236
+ showSeconds: {
237
+ type: PropType<boolean>;
238
+ default: boolean;
239
+ };
224
240
  name: {
225
241
  type: PropType<string>;
226
242
  default: "";
@@ -299,5 +315,6 @@ declare const _default: import("vue").DefineComponent<{
299
315
  visiblePriority: "xs" | "sm" | "lg" | "md" | "xl";
300
316
  wrapped: boolean;
301
317
  disableSort: boolean;
318
+ showSeconds: boolean;
302
319
  }, {}>;
303
320
  export default _default;
@@ -47,6 +47,28 @@ export declare function getPaddingWrapperCellSelector(componentTypeName: Compone
47
47
  type ContentWrapperSupportedComponentType = Extract<ComponentTypeName, "text" | "code">;
48
48
  export declare function getContentWrapperCssClass(componentTypeName: ContentWrapperSupportedComponentType, wrapperSuffix?: string): string;
49
49
  export declare function getContentWrapperSelector(componentTypeName: ContentWrapperSupportedComponentType, wrapperSuffix?: string): string;
50
+ /**
51
+ * These classes that can be added to globally style elements.
52
+ */
53
+ export declare const GlobalCssClasses: {
54
+ readonly borderHeading1: "border-heading-1";
55
+ readonly borderHeading2: "border-heading-2";
56
+ readonly borderHeading3: "border-heading-3";
57
+ readonly borderParagraph: "border-paragraph";
58
+ readonly fontGlobal: "font-global";
59
+ readonly fontHeading1: "font-heading-1";
60
+ readonly fontHeading2: "font-heading-2";
61
+ readonly fontHeading3: "font-heading-3";
62
+ readonly fontParagraph: "font-paragraph";
63
+ readonly marginHeading1: "margin-heading-1";
64
+ readonly marginHeading2: "margin-heading-2";
65
+ readonly marginHeading3: "margin-heading-3";
66
+ readonly marginParagraph: "margin-paragraph";
67
+ readonly paddingHeading1: "padding-heading-1";
68
+ readonly paddingHeading2: "padding-heading-2";
69
+ readonly paddingHeading3: "padding-heading-3";
70
+ readonly paddingParagraph: "padding-paragraph";
71
+ };
50
72
  export declare const GlobalStylesCssSelectors: {
51
73
  readonly backgroundColor: ".email-wrapper";
52
74
  readonly bodyWidth: string;
@@ -55,21 +77,6 @@ export declare const GlobalStylesCssSelectors: {
55
77
  readonly bodyAlignment: string;
56
78
  readonly bodyBorderStyling: string;
57
79
  readonly bodyMargin: string;
58
- readonly globalTextStyling: "body, .email-wrapper > tbody > tr > td";
59
- readonly heading1TextStyling: ".component-title h1";
60
- readonly heading1Margin: string;
61
- readonly heading1Padding: string;
62
- readonly heading1BorderStyling: string;
63
- readonly heading2TextStyling: ".component-title h2";
64
- readonly heading2Margin: string;
65
- readonly heading2Padding: string;
66
- readonly heading2BorderStyling: string;
67
- readonly heading3TextStyling: ".component-title h3";
68
- readonly heading3Margin: string;
69
- readonly heading3Padding: string;
70
- readonly heading3BorderStyling: string;
71
- readonly paragraphTextStyling: string;
72
- readonly paragraphMargin: string;
73
80
  readonly buttonBackgroundColor: ".component-button .button-link";
74
81
  readonly buttonTextStyling: ".component-button .button-link";
75
82
  readonly buttonCornerRadius: string;
@@ -272,16 +279,27 @@ export declare function getVideoComponentHelper(): ComponentMigrationHelper & {
272
279
  getElements(componentElement: Element): ComponentStructure | null;
273
280
  createComponentElement(): HTMLElement;
274
281
  };
282
+ type TitleComponentStructure = ComponentStructure & {
283
+ readonly headingEl: HTMLHeadElement | null;
284
+ readonly borderEl: HTMLElement;
285
+ readonly marginEl: HTMLElement;
286
+ readonly paddingEl: HTMLElement;
287
+ };
288
+ export type SupportedHeadingLevel = "h1" | "h2" | "h3";
289
+ export declare const SupportedHeadingLevels: SupportedHeadingLevel[];
275
290
  export declare function getTitleComponentHelper(): ComponentMigrationHelper & {
276
- getElements(componentElement: Element): ComponentStructure & {
277
- readonly headingEl: HTMLHeadElement | null;
278
- } | null;
291
+ getElements(componentElement: Element): TitleComponentStructure | null;
279
292
  createComponentElement(): HTMLElement;
293
+ setCssClasses(componentElements: TitleComponentStructure): void;
294
+ };
295
+ type TextComponentStructure = ComponentStructure & {
296
+ readonly contentWrapper: HTMLHeadElement | null;
297
+ readonly borderEl: HTMLElement;
298
+ readonly marginEl: HTMLElement;
299
+ readonly paddingEl: HTMLElement;
280
300
  };
281
301
  export declare function getTextComponentHelper(): ComponentMigrationHelper & {
282
- getElements(componentElement: Element): ComponentStructure & {
283
- readonly contentWrapper: HTMLElement | null;
284
- } | null;
302
+ getElements(componentElement: Element): TextComponentStructure | null;
285
303
  createComponentElement(): HTMLElement;
286
304
  };
287
305
  export declare function getButtonComponentHelper(): ComponentMigrationHelper & {
@@ -328,4 +346,33 @@ export declare function getComponentHelper(componentTypeName: ComponentTypeName)
328
346
  }) | null;
329
347
  createComponentElement(componentTypeName: SectionComponentTypeName): HTMLElement;
330
348
  }) | null;
349
+ export declare const FontFamilies: {
350
+ readonly Arial: "Arial, Helvetica, sans-serif";
351
+ readonly "Courier New": "\"Courier New\", Courier, monospace";
352
+ readonly Georgia: "Georgia, serif";
353
+ readonly Tahoma: "Tahoma, Geneva, sans-serif";
354
+ readonly "Times New Roman": "\"Times New Roman\", Times, serif";
355
+ readonly "Trebuchet MS": "\"Trebuchet MS\", Helvetica, sans-serif";
356
+ readonly Verdana: "Verdana, Geneva, sans-serif";
357
+ readonly Lucida: "\"Lucida Sans Unicode\", \"Lucida Grande\", sans-serif";
358
+ readonly "Helvetica Neue": "\"Helvetica Neue\", Helvetica, Arial, sans-serif";
359
+ };
360
+ export declare const LineHeights: {
361
+ readonly tight: {
362
+ readonly value: "1.2";
363
+ readonly title: "Tight";
364
+ };
365
+ readonly normal: {
366
+ readonly value: "1.5";
367
+ readonly title: "Normal";
368
+ };
369
+ readonly loose: {
370
+ readonly value: "1.8";
371
+ readonly title: "Loose";
372
+ };
373
+ readonly veryLoose: {
374
+ readonly value: "2";
375
+ readonly title: "Very Loose";
376
+ };
377
+ };
331
378
  export {};
@@ -38,6 +38,7 @@ declare const _default: import("vue").DefineComponent<{
38
38
  };
39
39
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
40
40
  "update:modelValue": (value: ListItemBag) => void;
41
+ "update:baseModelValue": (value: string) => void;
41
42
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
42
43
  label: {
43
44
  type: PropType<string>;
@@ -76,6 +77,7 @@ declare const _default: import("vue").DefineComponent<{
76
77
  };
77
78
  }>> & {
78
79
  "onUpdate:modelValue"?: ((value: ListItemBag) => any) | undefined;
80
+ "onUpdate:baseModelValue"?: ((value: string) => any) | undefined;
79
81
  }, {
80
82
  label: string;
81
83
  help: string;
@@ -35,7 +35,7 @@ declare const _default: import("vue").DefineComponent<{
35
35
  type: PropType<string>;
36
36
  default: string;
37
37
  };
38
- /** When this is enabled, the SMS option will be hidden regardless of server settings. */
38
+ /** When this is enabled, the SMS option will be hidden. */
39
39
  hideSms: {
40
40
  type: PropType<boolean>;
41
41
  default: boolean;
@@ -77,7 +77,7 @@ declare const _default: import("vue").DefineComponent<{
77
77
  type: PropType<string>;
78
78
  default: string;
79
79
  };
80
- /** When this is enabled, the SMS option will be hidden regardless of server settings. */
80
+ /** When this is enabled, the SMS option will be hidden. */
81
81
  hideSms: {
82
82
  type: PropType<boolean>;
83
83
  default: boolean;
@@ -0,0 +1,19 @@
1
+ /** Represents the result type for a connection opportunity signup attempt. */
2
+ export declare const ConnectionOpportunitySignupResultType: {
3
+ /** The signup was successful. */
4
+ readonly Success: 0;
5
+ /** The request was invalid. */
6
+ readonly CaptchaInvalid: 1;
7
+ /** The captcha validation failed. */
8
+ readonly InvalidRequest: 2;
9
+ /** The specified opportunity was not found. */
10
+ readonly OpportunityNotFound: 3;
11
+ /** The connection request was invalid. */
12
+ readonly InvalidConnectionRequest: 4;
13
+ /** An unknown error occurred. */
14
+ readonly UnknownError: 99;
15
+ };
16
+ /** Represents the result type for a connection opportunity signup attempt. */
17
+ export declare const ConnectionOpportunitySignupResultTypeDescription: Record<number, string>;
18
+ /** Represents the result type for a connection opportunity signup attempt. */
19
+ export type ConnectionOpportunitySignupResultType = typeof ConnectionOpportunitySignupResultType[keyof typeof ConnectionOpportunitySignupResultType];
@@ -2,8 +2,6 @@
2
2
  export declare const GroupRole: {
3
3
  /** The Member group member role for Application Group */
4
4
  GroupRoleApplicationGroupMember: string;
5
- /** The Member group member role for Hidden Application Group */
6
- GroupRoleHiddenApplicationGroupMember: string;
7
5
  /** The Administrator group member role for a Campus Team */
8
6
  GrouproleCampusTeamAdministrator: string;
9
7
  /** The Pastor group member role for a Campus Team */
@@ -18,8 +18,6 @@ export declare const GroupType: {
18
18
  GrouptypeFundraisingopportunity: string;
19
19
  /** General group type guid */
20
20
  GrouptypeGeneral: string;
21
- /** Hidden Application Group group type guid */
22
- GrouptypeHiddenApplicationGroup: string;
23
21
  /** Know relationship group type guid */
24
22
  GrouptypeKnownRelationships: string;
25
23
  /** Learning Management System (LMS) Class group type guid */
@@ -82,6 +82,8 @@ export type UploadOptions = {
82
82
  parentEntityTypeId?: number;
83
83
  /** The parent entity identifier */
84
84
  parentEntityId?: number;
85
+ /** The security grant token */
86
+ securityGrantToken?: string | null;
85
87
  };
86
88
  /**
87
89
  * Uploads a file to the Rock file system, usually inside the ~/Content directory.
@@ -0,0 +1,108 @@
1
+ //------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by the Rock.CodeGeneration project
4
+ // Changes to this file will be lost when the code is regenerated.
5
+ // </auto-generated>
6
+ //------------------------------------------------------------------------------
7
+ // <copyright>
8
+ // Copyright by the Spark Development Network
9
+ //
10
+ // Licensed under the Rock Community License (the "License");
11
+ // you may not use this file except in compliance with the License.
12
+ // You may obtain a copy of the License at
13
+ //
14
+ // http://www.rockrms.com/license
15
+ //
16
+ // Unless required by applicable law or agreed to in writing, software
17
+ // distributed under the License is distributed on an "AS IS" BASIS,
18
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ // See the License for the specific language governing permissions and
20
+ // limitations under the License.
21
+ // </copyright>
22
+ //
23
+
24
+ import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
25
+
26
+ /** Class PersistedDatasetListBag. */
27
+ export type PersistedDatasetListBag = {
28
+ /** Gets or sets the unique key to use to access this persisted dataset */
29
+ accessKey?: string | null;
30
+
31
+ /** Gets or sets a value indicating whether [allow manual refresh]. */
32
+ allowManualRefresh: boolean;
33
+
34
+ /** Gets or sets the build script. See Rock.Model.PersistedDataset.BuildScriptType */
35
+ buildScript?: string | null;
36
+
37
+ /** Gets or sets a user defined description of the PersistedDataset. */
38
+ description?: string | null;
39
+
40
+ /** Gets or sets a comma-delimited list of enabled LavaCommands */
41
+ enabledLavaCommands?: ListItemBag[] | null;
42
+
43
+ /** Gets or sets the type of the entity. */
44
+ entityType?: ListItemBag | null;
45
+
46
+ /** The DateTime when to stop updating the Rock.Model.PersistedDataset.ResultData */
47
+ expireDateTime?: string | null;
48
+
49
+ /** Gets or sets the readable iCalendar content */
50
+ friendlyScheduleText?: string | null;
51
+
52
+ /**
53
+ * The PersistedDataset's Id. It is included for the Excel/CSV Export and
54
+ * to generate the IdKey from after ToList().
55
+ */
56
+ id: number;
57
+
58
+ /**
59
+ * Gets or sets the identifier key of this entity.
60
+ * NOTE: This is used to identify the PersistedDataset in the client operations.
61
+ */
62
+ idKey?: string | null;
63
+
64
+ /** Gets or sets a value indicating whether this instance is active. */
65
+ isActive: boolean;
66
+
67
+ /** Gets or sets a value indicating whether this instance is used by the system. */
68
+ isSystem: boolean;
69
+
70
+ /** Gets or sets the persisted last refresh date time. */
71
+ lastRefreshDateTime?: string | null;
72
+
73
+ /** Gets or sets the memory cache duration ms. */
74
+ memoryCacheDurationHours?: number | null;
75
+
76
+ /** Gets or sets the Name of the PersistedDataset. */
77
+ name?: string | null;
78
+
79
+ /** Gets or sets the named schedules. */
80
+ namedSchedules?: ListItemBag[] | null;
81
+
82
+ /** Gets or sets the schedule data. */
83
+ persistedSchedule?: string | null;
84
+
85
+ /** Gets or sets the Schedule ID. */
86
+ persistedScheduleId?: number | null;
87
+
88
+ /** Gets or sets the persisted schedule interval type. */
89
+ persistedScheduleIntervalType?: string | null;
90
+
91
+ /** Gets or sets the persisted schedule type. */
92
+ persistedScheduleType?: string | null;
93
+
94
+ /** Gets or sets the persistence type. */
95
+ persistenceType?: string | null;
96
+
97
+ /** Gets or sets the refresh interval */
98
+ refreshInterval?: number | null;
99
+
100
+ /** Gets or sets the refresh interval Hours */
101
+ refreshIntervalHours?: number | null;
102
+
103
+ /** Gets or sets the size of the result data in bytes. */
104
+ resultSize?: number | null;
105
+
106
+ /** Gets or sets the time to build in milliseconds */
107
+ timeToBuildMS?: number | null;
108
+ };
@@ -37,7 +37,10 @@ export type CommunicationEntryEmailMediumOptionsBag = {
37
37
  bulkEmailThreshold?: number | null;
38
38
 
39
39
  /** Gets or sets the document folder root. */
40
- documentFolderRoot?: string | null;
40
+ encryptedDocumentFolderRoot?: string | null;
41
+
42
+ /** Gets or sets the image folder root. */
43
+ encryptedImageFolderRoot?: string | null;
41
44
 
42
45
  /** Gets or sets the address of the sender. */
43
46
  fromAddress?: string | null;
@@ -48,9 +51,6 @@ export type CommunicationEntryEmailMediumOptionsBag = {
48
51
  /** Gets or sets a value indicating whether this medium has an active transport. */
49
52
  hasActiveTransport: boolean;
50
53
 
51
- /** Gets or sets the image folder root. */
52
- imageFolderRoot?: string | null;
53
-
54
54
  /** Gets or sets a value indicating whether the attachment uploader is shown. */
55
55
  isAttachmentUploaderShown: boolean;
56
56
 
@@ -47,6 +47,9 @@ export type SmsConversationsInitializationBox = {
47
47
  /** Gets or sets the list of available note types. */
48
48
  noteTypes?: NoteTypeBag[] | null;
49
49
 
50
+ /** Gets or sets the security grant token. */
51
+ securityGrantToken?: string | null;
52
+
50
53
  /** Gets or sets the list of available snippets. */
51
54
  snippets?: SnippetBag[] | null;
52
55
 
@@ -0,0 +1,77 @@
1
+ //------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by the Rock.CodeGeneration project
4
+ // Changes to this file will be lost when the code is regenerated.
5
+ // </auto-generated>
6
+ //------------------------------------------------------------------------------
7
+ // <copyright>
8
+ // Copyright by the Spark Development Network
9
+ //
10
+ // Licensed under the Rock Community License (the "License");
11
+ // you may not use this file except in compliance with the License.
12
+ // You may obtain a copy of the License at
13
+ //
14
+ // http://www.rockrms.com/license
15
+ //
16
+ // Unless required by applicable law or agreed to in writing, software
17
+ // distributed under the License is distributed on an "AS IS" BASIS,
18
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ // See the License for the specific language governing permissions and
20
+ // limitations under the License.
21
+ // </copyright>
22
+ //
23
+
24
+ import { PhoneNumberBoxWithSmsControlBag } from "@Obsidian/ViewModels/Controls/phoneNumberBoxWithSmsControlBag";
25
+ import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
26
+ import { PublicAttributeBag } from "@Obsidian/ViewModels/Utility/publicAttributeBag";
27
+
28
+ /** A bag containing the required information to render a Connection Opportunity Signup block. */
29
+ export type ConnectionOpportunitySignupInitializationBox = {
30
+ /** Gets or sets the public editable attributes for the connection request. */
31
+ attributes?: Record<string, PublicAttributeBag> | null;
32
+
33
+ /** Gets or sets the available campuses for the opportunity. */
34
+ campuses?: ListItemBag[] | null;
35
+
36
+ /** Gets or sets the label to display for the comment field on the signup form. */
37
+ commentFieldLabel?: string | null;
38
+
39
+ /** Gets or sets whether to disable captcha support for the block. */
40
+ disableCaptchaSupport: boolean;
41
+
42
+ /** Gets or sets whether to display the home phone field. */
43
+ displayHomePhone: boolean;
44
+
45
+ /** Gets or sets whether to display the mobile phone field. */
46
+ displayMobilePhone: boolean;
47
+
48
+ /** Gets or sets the pre-filled email. */
49
+ email?: string | null;
50
+
51
+ /**
52
+ * Gets or sets the error message. A non-empty value indicates that
53
+ * an error is preventing the block from being displayed.
54
+ */
55
+ errorMessage?: string | null;
56
+
57
+ /** Gets or sets the pre-filled first name. */
58
+ firstName?: string | null;
59
+
60
+ /** Gets or sets the pre-filled home phone. */
61
+ homePhone?: PhoneNumberBoxWithSmsControlBag | null;
62
+
63
+ /** Gets or sets the pre-filled last name. */
64
+ lastName?: string | null;
65
+
66
+ /** Gets or sets the pre-filled mobile phone. */
67
+ mobilePhone?: PhoneNumberBoxWithSmsControlBag | null;
68
+
69
+ /** Gets or sets the navigation urls. */
70
+ navigationUrls?: Record<string, string> | null;
71
+
72
+ /** Gets or sets the security grant token. */
73
+ securityGrantToken?: string | null;
74
+
75
+ /** Gets or sets the pre-selected campus ID. */
76
+ selectedCampusId?: number | null;
77
+ };
@@ -0,0 +1,51 @@
1
+ //------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by the Rock.CodeGeneration project
4
+ // Changes to this file will be lost when the code is regenerated.
5
+ // </auto-generated>
6
+ //------------------------------------------------------------------------------
7
+ // <copyright>
8
+ // Copyright by the Spark Development Network
9
+ //
10
+ // Licensed under the Rock Community License (the "License");
11
+ // you may not use this file except in compliance with the License.
12
+ // You may obtain a copy of the License at
13
+ //
14
+ // http://www.rockrms.com/license
15
+ //
16
+ // Unless required by applicable law or agreed to in writing, software
17
+ // distributed under the License is distributed on an "AS IS" BASIS,
18
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ // See the License for the specific language governing permissions and
20
+ // limitations under the License.
21
+ // </copyright>
22
+ //
23
+
24
+ import { PhoneNumberBoxWithSmsControlBag } from "@Obsidian/ViewModels/Controls/phoneNumberBoxWithSmsControlBag";
25
+
26
+ /** A bag containing the signup request details. */
27
+ export type ConnectionOpportunitySignupRequestBag = {
28
+ /** Gets or sets the attribute values. */
29
+ attributeValues?: Record<string, string> | null;
30
+
31
+ /** Gets or sets the campus identifier. */
32
+ campusId?: number | null;
33
+
34
+ /** Gets or sets the comments. */
35
+ comments?: string | null;
36
+
37
+ /** Gets or sets the email. */
38
+ email?: string | null;
39
+
40
+ /** Gets or sets the first name. */
41
+ firstName?: string | null;
42
+
43
+ /** Gets or sets the pre-filled home phone. */
44
+ homePhone?: PhoneNumberBoxWithSmsControlBag | null;
45
+
46
+ /** Gets or sets the last name. */
47
+ lastName?: string | null;
48
+
49
+ /** Gets or sets the pre-filled mobile phone. */
50
+ mobilePhone?: PhoneNumberBoxWithSmsControlBag | null;
51
+ };
@@ -0,0 +1,33 @@
1
+ //------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by the Rock.CodeGeneration project
4
+ // Changes to this file will be lost when the code is regenerated.
5
+ // </auto-generated>
6
+ //------------------------------------------------------------------------------
7
+ // <copyright>
8
+ // Copyright by the Spark Development Network
9
+ //
10
+ // Licensed under the Rock Community License (the "License");
11
+ // you may not use this file except in compliance with the License.
12
+ // You may obtain a copy of the License at
13
+ //
14
+ // http://www.rockrms.com/license
15
+ //
16
+ // Unless required by applicable law or agreed to in writing, software
17
+ // distributed under the License is distributed on an "AS IS" BASIS,
18
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ // See the License for the specific language governing permissions and
20
+ // limitations under the License.
21
+ // </copyright>
22
+ //
23
+
24
+ import { ConnectionOpportunitySignupResultType } from "@Obsidian/Enums/Blocks/Connection/ConnectionOpportunitySignup/connectionOpportunitySignupResultType";
25
+
26
+ /** A bag containing the response information after signing up. */
27
+ export type ConnectionOpportunitySignupResultBag = {
28
+ /** Gets or sets the response message (success or error details). */
29
+ responseMessage?: string | null;
30
+
31
+ /** Gets or sets the result type of the signup attempt. */
32
+ resultType: ConnectionOpportunitySignupResultType;
33
+ };
@@ -21,7 +21,12 @@
21
21
  // </copyright>
22
22
  //
23
23
 
24
+ import { CurrencyInfoBag } from "@Obsidian/ViewModels/Utility/currencyInfoBag";
25
+
24
26
  export type FinancialPledgeListOptionsBag = {
27
+ /** Gets or sets the currency information. */
28
+ currencyInfo?: CurrencyInfoBag | null;
29
+
25
30
  /** Determines if the amount column should be displayed. */
26
31
  hideAmount: boolean;
27
32