@worknice/js-sdk 0.0.7 → 0.0.8-rc.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/dist/api/_generated.d.ts +12 -1
- package/dist/api/_generated.js +11 -0
- package/dist/api/_generated.js.map +1 -1
- package/package.json +5 -3
package/dist/api/_generated.d.ts
CHANGED
|
@@ -4645,8 +4645,19 @@ type SmartDocumentFieldInput = {
|
|
|
4645
4645
|
declare enum SmartDocumentFieldType {
|
|
4646
4646
|
DateOfBirth = "DATE_OF_BIRTH",
|
|
4647
4647
|
DisplayName = "DISPLAY_NAME",
|
|
4648
|
+
EmployeeCode = "EMPLOYEE_CODE",
|
|
4649
|
+
EndDate = "END_DATE",
|
|
4650
|
+
FamilyName = "FAMILY_NAME",
|
|
4648
4651
|
FullName = "FULL_NAME",
|
|
4649
|
-
|
|
4652
|
+
GivenName = "GIVEN_NAME",
|
|
4653
|
+
LocationName = "LOCATION_NAME",
|
|
4654
|
+
PersonalEmail = "PERSONAL_EMAIL",
|
|
4655
|
+
PersonalPhone = "PERSONAL_PHONE",
|
|
4656
|
+
PostalAddress = "POSTAL_ADDRESS",
|
|
4657
|
+
ResidentialAddress = "RESIDENTIAL_ADDRESS",
|
|
4658
|
+
StartDate = "START_DATE",
|
|
4659
|
+
WorkEmail = "WORK_EMAIL",
|
|
4660
|
+
WorkPhone = "WORK_PHONE"
|
|
4650
4661
|
}
|
|
4651
4662
|
type StandardReview = Assignment & {
|
|
4652
4663
|
approvals: Array<Approval>;
|
package/dist/api/_generated.js
CHANGED
|
@@ -245,8 +245,19 @@ var ReviewRelation = /* @__PURE__ */ ((ReviewRelation2) => {
|
|
|
245
245
|
var SmartDocumentFieldType = /* @__PURE__ */ ((SmartDocumentFieldType2) => {
|
|
246
246
|
SmartDocumentFieldType2["DateOfBirth"] = "DATE_OF_BIRTH";
|
|
247
247
|
SmartDocumentFieldType2["DisplayName"] = "DISPLAY_NAME";
|
|
248
|
+
SmartDocumentFieldType2["EmployeeCode"] = "EMPLOYEE_CODE";
|
|
249
|
+
SmartDocumentFieldType2["EndDate"] = "END_DATE";
|
|
250
|
+
SmartDocumentFieldType2["FamilyName"] = "FAMILY_NAME";
|
|
248
251
|
SmartDocumentFieldType2["FullName"] = "FULL_NAME";
|
|
252
|
+
SmartDocumentFieldType2["GivenName"] = "GIVEN_NAME";
|
|
253
|
+
SmartDocumentFieldType2["LocationName"] = "LOCATION_NAME";
|
|
254
|
+
SmartDocumentFieldType2["PersonalEmail"] = "PERSONAL_EMAIL";
|
|
255
|
+
SmartDocumentFieldType2["PersonalPhone"] = "PERSONAL_PHONE";
|
|
256
|
+
SmartDocumentFieldType2["PostalAddress"] = "POSTAL_ADDRESS";
|
|
257
|
+
SmartDocumentFieldType2["ResidentialAddress"] = "RESIDENTIAL_ADDRESS";
|
|
249
258
|
SmartDocumentFieldType2["StartDate"] = "START_DATE";
|
|
259
|
+
SmartDocumentFieldType2["WorkEmail"] = "WORK_EMAIL";
|
|
260
|
+
SmartDocumentFieldType2["WorkPhone"] = "WORK_PHONE";
|
|
250
261
|
return SmartDocumentFieldType2;
|
|
251
262
|
})(SmartDocumentFieldType || {});
|
|
252
263
|
var StandardReviewQuestionRespondent = /* @__PURE__ */ ((StandardReviewQuestionRespondent2) => {
|