Skip to content

Commit 79deb6c

Browse files
committed
🐛 Added sync
1 parent d7e0910 commit 79deb6c

File tree

136 files changed

+8422
-533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+8422
-533
lines changed

Diff for: packages/api/src/@core/utils/types/original/original.accounting.ts

+40-40
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
11
/* INPUT */
22

33
/* attachment */
4-
export type OriginalAttachmentInput = '';
4+
export type OriginalAttachmentInput = any;
55

66
/* address */
7-
export type OriginalAddressInput = '';
7+
export type OriginalAddressInput = any;
88

99
/* account */
10-
export type OriginalAccountInput = '';
10+
export type OriginalAccountInput = any;
1111

1212
/* balancesheet */
13-
export type OriginalBalanceSheetInput = '';
13+
export type OriginalBalanceSheetInput = any;
1414

1515
/* cashflowstatement */
16-
export type OriginalCashflowStatementInput = '';
16+
export type OriginalCashflowStatementInput = any;
1717

1818
/* companyinfo */
19-
export type OriginalCompanyInfoInput = '';
19+
export type OriginalCompanyInfoInput = any;
2020

2121
/* contact */
22-
export type OriginalContactInput = '';
22+
export type OriginalContactInput = any;
2323

2424
/* creditnote */
25-
export type OriginalCreditNoteInput = '';
25+
export type OriginalCreditNoteInput = any;
2626

2727
/* expense */
28-
export type OriginalExpenseInput = '';
28+
export type OriginalExpenseInput = any;
2929

3030
/* incomestatement */
31-
export type OriginalIncomeStatementInput = '';
31+
export type OriginalIncomeStatementInput = any;
3232

3333
/* invoice */
34-
export type OriginalInvoiceInput = '';
34+
export type OriginalInvoiceInput = any;
3535

3636
/* item */
37-
export type OriginalItemInput = '';
37+
export type OriginalItemInput = any;
3838

3939
/* journalentry */
40-
export type OriginalJournalEntryInput = '';
40+
export type OriginalJournalEntryInput = any;
4141

4242
/* payment */
43-
export type OriginalPaymentInput = '';
43+
export type OriginalPaymentInput = any;
4444

4545
/* phonenumber */
46-
export type OriginalPhoneNumberInput = '';
46+
export type OriginalPhoneNumberInput = any;
4747

4848
/* purchaseorder */
49-
export type OriginalPurchaseOrderInput = '';
49+
export type OriginalPurchaseOrderInput = any;
5050

5151
/* taxrate */
52-
export type OriginalTaxRateInput = '';
52+
export type OriginalTaxRateInput = any;
5353

5454
/* trackingcategory */
55-
export type OriginalTrackingCategoryInput = '';
55+
export type OriginalTrackingCategoryInput = any;
5656

5757
/* transaction */
58-
export type OriginalTransactionInput = '';
58+
export type OriginalTransactionInput = any;
5959

6060
/* vendorcredit */
61-
export type OriginalVendorCreditInput = '';
61+
export type OriginalVendorCreditInput = any;
6262

6363
export type AccountingObjectInput =
6464
| OriginalAttachmentInput
@@ -85,64 +85,64 @@ export type AccountingObjectInput =
8585
/* OUTPUT */
8686

8787
/* attachment */
88-
export type OriginalAttachmentOutput = '';
88+
export type OriginalAttachmentOutput = any;
8989

9090
/* address */
91-
export type OriginalAddressOutput = '';
91+
export type OriginalAddressOutput = any;
9292

9393
/* account */
94-
export type OriginalAccountOutput = '';
94+
export type OriginalAccountOutput = any;
9595

9696
/* balancesheet */
97-
export type OriginalBalanceSheetOutput = '';
97+
export type OriginalBalanceSheetOutput = any;
9898

9999
/* cashflowstatement */
100-
export type OriginalCashflowStatementOutput = '';
100+
export type OriginalCashflowStatementOutput = any;
101101

102102
/* companyinfo */
103-
export type OriginalCompanyInfoOutput = '';
103+
export type OriginalCompanyInfoOutput = any;
104104

105105
/* contact */
106-
export type OriginalContactOutput = '';
106+
export type OriginalContactOutput = any;
107107

108108
/* creditnote */
109-
export type OriginalCreditNoteOutput = '';
109+
export type OriginalCreditNoteOutput = any;
110110

111111
/* expense */
112-
export type OriginalExpenseOutput = '';
112+
export type OriginalExpenseOutput = any;
113113

114114
/* incomestatement */
115-
export type OriginalIncomeStatementOutput = '';
115+
export type OriginalIncomeStatementOutput = any;
116116

117117
/* invoice */
118-
export type OriginalInvoiceOutput = '';
118+
export type OriginalInvoiceOutput = any;
119119

120120
/* item */
121-
export type OriginalItemOutput = '';
121+
export type OriginalItemOutput = any;
122122

123123
/* journalentry */
124-
export type OriginalJournalEntryOutput = '';
124+
export type OriginalJournalEntryOutput = any;
125125

126126
/* payment */
127-
export type OriginalPaymentOutput = '';
127+
export type OriginalPaymentOutput = any;
128128

129129
/* phonenumber */
130-
export type OriginalPhoneNumberOutput = '';
130+
export type OriginalPhoneNumberOutput = any;
131131

132132
/* purchaseorder */
133-
export type OriginalPurchaseOrderOutput = '';
133+
export type OriginalPurchaseOrderOutput = any;
134134

135135
/* taxrate */
136-
export type OriginalTaxRateOutput = '';
136+
export type OriginalTaxRateOutput = any;
137137

138138
/* trackingcategory */
139-
export type OriginalTrackingCategoryOutput = '';
139+
export type OriginalTrackingCategoryOutput = any;
140140

141141
/* transaction */
142-
export type OriginalTransactionOutput = '';
142+
export type OriginalTransactionOutput = any;
143143

144144
/* vendorcredit */
145-
export type OriginalVendorCreditOutput = '';
145+
export type OriginalVendorCreditOutput = any;
146146

147147
export type AccountingObjectOutput =
148148
| OriginalAttachmentOutput

Diff for: packages/api/src/@core/utils/types/original/original.ats.ts

+32-32
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
/* INPUT */
22

33
/* activity */
4-
export type OriginalActivityInput = '';
4+
export type OriginalActivityInput = any;
55

66
/* application */
7-
export type OriginalApplicationInput = '';
7+
export type OriginalApplicationInput = any;
88

99
/* attachment */
10-
export type OriginalAttachmentInput = '';
10+
export type OriginalAttachmentInput = any;
1111

1212
/* candidate */
13-
export type OriginalCandidateInput = '';
13+
export type OriginalCandidateInput = any;
1414

1515
/* department */
16-
export type OriginalDepartmentInput = '';
16+
export type OriginalDepartmentInput = any;
1717

1818
/* interview */
19-
export type OriginalInterviewInput = '';
19+
export type OriginalInterviewInput = any;
2020

2121
/* jobinterviewstage */
22-
export type OriginalJobInterviewStageInput = '';
22+
export type OriginalJobInterviewStageInput = any;
2323

2424
/* job */
25-
export type OriginalJobInput = '';
25+
export type OriginalJobInput = any;
2626

2727
/* offer */
28-
export type OriginalOfferInput = '';
28+
export type OriginalOfferInput = any;
2929

3030
/* office */
31-
export type OriginalOfficeInput = '';
31+
export type OriginalOfficeInput = any;
3232

3333
/* rejectreason */
34-
export type OriginalRejectReasonInput = '';
34+
export type OriginalRejectReasonInput = any;
3535

3636
/* scorecard */
37-
export type OriginalScoreCardInput = '';
37+
export type OriginalScoreCardInput = any;
3838

3939
/* screeningquestion */
40-
export type OriginalScreeningQuestionInput = '';
40+
export type OriginalScreeningQuestionInput = any;
4141

4242
/* tag */
43-
export type OriginalTagInput = '';
43+
export type OriginalTagInput = any;
4444

4545
/* user */
46-
export type OriginalUserInput = '';
46+
export type OriginalUserInput = any;
4747

4848
/* eeocs */
49-
export type OriginalEeocsInput = '';
49+
export type OriginalEeocsInput = any;
5050

5151
export type AtsObjectInput =
5252
| OriginalActivityInput
@@ -69,52 +69,52 @@ export type AtsObjectInput =
6969
/* OUTPUT */
7070

7171
/* activity */
72-
export type OriginalActivityOutput = '';
72+
export type OriginalActivityOutput = any;
7373

7474
/* application */
75-
export type OriginalApplicationOutput = '';
75+
export type OriginalApplicationOutput = any;
7676

7777
/* attachment */
78-
export type OriginalAttachmentOutput = '';
78+
export type OriginalAttachmentOutput = any;
7979

8080
/* candidate */
81-
export type OriginalCandidateOutput = '';
81+
export type OriginalCandidateOutput = any;
8282

8383
/* department */
84-
export type OriginalDepartmentOutput = '';
84+
export type OriginalDepartmentOutput = any;
8585

8686
/* interview */
87-
export type OriginalInterviewOutput = '';
87+
export type OriginalInterviewOutput = any;
8888

8989
/* jobinterviewstage */
90-
export type OriginalJobInterviewStageOutput = '';
90+
export type OriginalJobInterviewStageOutput = any;
9191

9292
/* job */
93-
export type OriginalJobOutput = '';
93+
export type OriginalJobOutput = any;
9494

9595
/* offer */
96-
export type OriginalOfferOutput = '';
96+
export type OriginalOfferOutput = any;
9797

9898
/* office */
99-
export type OriginalOfficeOutput = '';
99+
export type OriginalOfficeOutput = any;
100100

101101
/* rejectreason */
102-
export type OriginalRejectReasonOutput = '';
102+
export type OriginalRejectReasonOutput = any;
103103

104104
/* scorecard */
105-
export type OriginalScoreCardOutput = '';
105+
export type OriginalScoreCardOutput = any;
106106

107107
/* screeningquestion */
108-
export type OriginalScreeningQuestionOutput = '';
108+
export type OriginalScreeningQuestionOutput = any;
109109

110110
/* tag */
111-
export type OriginalTagOutput = '';
111+
export type OriginalTagOutput = any;
112112

113113
/* user */
114-
export type OriginalUserOutput = '';
114+
export type OriginalUserOutput = any;
115115

116116
/* eeocs */
117-
export type OriginalEeocsOutput = '';
117+
export type OriginalEeocsOutput = any;
118118

119119
export type AtsObjectOutput =
120120
| OriginalActivityOutput

Diff for: packages/api/src/@core/utils/types/original/original.file-storage.ts

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
/* INPUT */
22

33
/* file */
4-
export type OriginalFileInput = '';
4+
export type OriginalFileInput = any;
55

66
/* folder */
7-
export type OriginalFolderInput = '';
7+
export type OriginalFolderInput = any;
88

99
/* permission */
10-
export type OriginalPermissionInput = '';
10+
export type OriginalPermissionInput = any;
1111

1212
/* shared link */
13-
export type OriginalSharedLinkInput = '';
13+
export type OriginalSharedLinkInput = any;
1414

1515
/* drive */
16-
export type OriginalDriveInput = '';
16+
export type OriginalDriveInput = any;
1717

1818
/* group */
19-
export type OriginalGroupInput = '';
19+
export type OriginalGroupInput = any;
2020

2121
/* user */
22-
export type OriginalUserInput = '';
22+
export type OriginalUserInput = any;
2323

2424
export type FileStorageObjectInput =
2525
| OriginalFileInput
@@ -33,25 +33,25 @@ export type FileStorageObjectInput =
3333
/* OUTPUT */
3434

3535
/* file */
36-
export type OriginalFileOutput = '';
36+
export type OriginalFileOutput = any;
3737

3838
/* folder */
39-
export type OriginalFolderOutput = '';
39+
export type OriginalFolderOutput = any;
4040

4141
/* permission */
42-
export type OriginalPermissionOutput = '';
42+
export type OriginalPermissionOutput = any;
4343

4444
/* shared link */
45-
export type OriginalSharedLinkOutput = '';
45+
export type OriginalSharedLinkOutput = any;
4646

4747
/* drive */
48-
export type OriginalDriveOutput = '';
48+
export type OriginalDriveOutput = any;
4949

5050
/* group */
51-
export type OriginalGroupOutput = '';
51+
export type OriginalGroupOutput = any;
5252

5353
/* user */
54-
export type OriginalUserOutput = '';
54+
export type OriginalUserOutput = any;
5555

5656
export type FileStorageObjectOutput =
5757
| OriginalFileOutput

0 commit comments

Comments
 (0)