@sprucelabs/spruce-people-utils 1.0.51 → 1.0.54

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.
@@ -41,12 +41,15 @@ declare const inviteFormSchema: {
41
41
  id: string;
42
42
  fields: {
43
43
  firstName: {
44
+ label: string;
44
45
  type: "text";
45
46
  };
46
47
  lastName: {
48
+ label: string;
47
49
  type: "text";
48
50
  };
49
51
  phone: {
52
+ label: string;
50
53
  type: "phone";
51
54
  isRequired: true;
52
55
  };
@@ -40,7 +40,13 @@ export default class InvitePersonCardViewController extends AbstractViewControll
40
40
  isPlaying: false,
41
41
  sentences: [
42
42
  {
43
- words: 'Ready when you are!',
43
+ words: `Ok, they should have gotten a text message with an invite link.`,
44
+ },
45
+ {
46
+ words: `Have them tap the link and follow the instructions!`,
47
+ },
48
+ {
49
+ words: "Once they are done we'll be onto the next step!",
44
50
  },
45
51
  ],
46
52
  });
@@ -209,12 +215,15 @@ const inviteFormSchema = buildSchema({
209
215
  id: 'inviteForm',
210
216
  fields: {
211
217
  firstName: {
218
+ label: 'First name',
212
219
  type: 'text',
213
220
  },
214
221
  lastName: {
222
+ label: 'Last name',
215
223
  type: 'text',
216
224
  },
217
225
  phone: {
226
+ label: 'Phone',
218
227
  type: 'phone',
219
228
  isRequired: true,
220
229
  },
@@ -41,12 +41,15 @@ declare const inviteFormSchema: {
41
41
  id: string;
42
42
  fields: {
43
43
  firstName: {
44
+ label: string;
44
45
  type: "text";
45
46
  };
46
47
  lastName: {
48
+ label: string;
47
49
  type: "text";
48
50
  };
49
51
  phone: {
52
+ label: string;
50
53
  type: "phone";
51
54
  isRequired: true;
52
55
  };
@@ -33,7 +33,13 @@ class InvitePersonCardViewController extends heartwood_view_controllers_1.Abstra
33
33
  isPlaying: false,
34
34
  sentences: [
35
35
  {
36
- words: 'Ready when you are!',
36
+ words: `Ok, they should have gotten a text message with an invite link.`,
37
+ },
38
+ {
39
+ words: `Have them tap the link and follow the instructions!`,
40
+ },
41
+ {
42
+ words: "Once they are done we'll be onto the next step!",
37
43
  },
38
44
  ],
39
45
  });
@@ -182,12 +188,15 @@ const inviteFormSchema = (0, schema_1.buildSchema)({
182
188
  id: 'inviteForm',
183
189
  fields: {
184
190
  firstName: {
191
+ label: 'First name',
185
192
  type: 'text',
186
193
  },
187
194
  lastName: {
195
+ label: 'Last name',
188
196
  type: 'text',
189
197
  },
190
198
  phone: {
199
+ label: 'Phone',
191
200
  type: 'phone',
192
201
  isRequired: true,
193
202
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sprucelabs/spruce-people-utils",
3
3
  "description": "People Utilities",
4
- "version": "1.0.51",
4
+ "version": "1.0.54",
5
5
  "skill": {
6
6
  "namespace": "invite"
7
7
  },