@sprucelabs/spruce-people-utils 1.0.54 → 1.0.57

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.
@@ -44,10 +44,6 @@ declare const inviteFormSchema: {
44
44
  label: string;
45
45
  type: "text";
46
46
  };
47
- lastName: {
48
- label: string;
49
- type: "text";
50
- };
51
47
  phone: {
52
48
  label: string;
53
49
  type: "phone";
@@ -138,7 +138,7 @@ export default class InvitePersonCardViewController extends AbstractViewControll
138
138
  onSubmit: this.handleSubmitNamePhoneForm.bind(this),
139
139
  sections: [
140
140
  {
141
- fields: ['firstName', 'lastName', 'phone'],
141
+ fields: ['firstName', 'phone'],
142
142
  },
143
143
  ],
144
144
  }));
@@ -218,10 +218,6 @@ const inviteFormSchema = buildSchema({
218
218
  label: 'First name',
219
219
  type: 'text',
220
220
  },
221
- lastName: {
222
- label: 'Last name',
223
- type: 'text',
224
- },
225
221
  phone: {
226
222
  label: 'Phone',
227
223
  type: 'phone',
@@ -44,10 +44,6 @@ declare const inviteFormSchema: {
44
44
  label: string;
45
45
  type: "text";
46
46
  };
47
- lastName: {
48
- label: string;
49
- type: "text";
50
- };
51
47
  phone: {
52
48
  label: string;
53
49
  type: "phone";
@@ -123,7 +123,7 @@ class InvitePersonCardViewController extends heartwood_view_controllers_1.Abstra
123
123
  onSubmit: this.handleSubmitNamePhoneForm.bind(this),
124
124
  sections: [
125
125
  {
126
- fields: ['firstName', 'lastName', 'phone'],
126
+ fields: ['firstName', 'phone'],
127
127
  },
128
128
  ],
129
129
  }));
@@ -191,10 +191,6 @@ const inviteFormSchema = (0, schema_1.buildSchema)({
191
191
  label: 'First name',
192
192
  type: 'text',
193
193
  },
194
- lastName: {
195
- label: 'Last name',
196
- type: 'text',
197
- },
198
194
  phone: {
199
195
  label: 'Phone',
200
196
  type: 'phone',
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.54",
4
+ "version": "1.0.57",
5
5
  "skill": {
6
6
  "namespace": "invite"
7
7
  },