@kl1/contracts 1.1.48-uat → 1.1.49-uat
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/index.js +50 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +44 -8
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +3214 -15
- package/dist/src/contract.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
@@ -7853,20 +7853,52 @@ var workflowContract = initContract43().router(
|
|
7853
7853
|
}
|
7854
7854
|
);
|
7855
7855
|
var settingsPathPrefix = "settings/";
|
7856
|
-
var
|
7856
|
+
var ticketSettingContract = initContract43().router(
|
7857
7857
|
{
|
7858
|
-
|
7858
|
+
ticketSetting: attributeContract
|
7859
7859
|
},
|
7860
7860
|
{
|
7861
|
-
pathPrefix: settingsPathPrefix
|
7861
|
+
pathPrefix: `${settingsPathPrefix}/ticket/`
|
7862
7862
|
}
|
7863
7863
|
);
|
7864
|
-
var
|
7864
|
+
var contactSettingContract = initContract43().router(
|
7865
7865
|
{
|
7866
|
-
|
7866
|
+
contactSetting: attributeContract
|
7867
7867
|
},
|
7868
7868
|
{
|
7869
|
-
pathPrefix: settingsPathPrefix
|
7869
|
+
pathPrefix: `${settingsPathPrefix}/contact/`
|
7870
|
+
}
|
7871
|
+
);
|
7872
|
+
var companySettingContract = initContract43().router(
|
7873
|
+
{
|
7874
|
+
companySetting: attributeContract
|
7875
|
+
},
|
7876
|
+
{
|
7877
|
+
pathPrefix: `${settingsPathPrefix}/company/`
|
7878
|
+
}
|
7879
|
+
);
|
7880
|
+
var caseLogSettingContract = initContract43().router(
|
7881
|
+
{
|
7882
|
+
caseLogSetting: attributeContract
|
7883
|
+
},
|
7884
|
+
{
|
7885
|
+
pathPrefix: `${settingsPathPrefix}/case_log/`
|
7886
|
+
}
|
7887
|
+
);
|
7888
|
+
var generalTagSettingContract = initContract43().router(
|
7889
|
+
{
|
7890
|
+
generalTag: tagContract
|
7891
|
+
},
|
7892
|
+
{
|
7893
|
+
pathPrefix: `${settingsPathPrefix}/general_tag/`
|
7894
|
+
}
|
7895
|
+
);
|
7896
|
+
var contactLabelSettingContract = initContract43().router(
|
7897
|
+
{
|
7898
|
+
contactLabel: tagContract
|
7899
|
+
},
|
7900
|
+
{
|
7901
|
+
pathPrefix: `${settingsPathPrefix}/contact_label/`
|
7870
7902
|
}
|
7871
7903
|
);
|
7872
7904
|
var categorySettingContract = initContract43().router(
|
@@ -8186,11 +8218,11 @@ export {
|
|
8186
8218
|
activityLogContract,
|
8187
8219
|
apiContract,
|
8188
8220
|
attributeContract,
|
8189
|
-
attributeSettingContact,
|
8190
8221
|
botContract,
|
8191
8222
|
botpressContract,
|
8192
8223
|
businessCalendarContract2 as businessCalendarContract,
|
8193
8224
|
businessCalendarSettingContract,
|
8225
|
+
caseLogSettingContract,
|
8194
8226
|
categoryContract,
|
8195
8227
|
categorySettingContract,
|
8196
8228
|
channelBotContract,
|
@@ -8199,11 +8231,15 @@ export {
|
|
8199
8231
|
commentActivityContract,
|
8200
8232
|
commentContract,
|
8201
8233
|
companyContract,
|
8234
|
+
companySettingContract,
|
8202
8235
|
contactContract2 as contactContract,
|
8236
|
+
contactLabelSettingContract,
|
8237
|
+
contactSettingContract,
|
8203
8238
|
cxLogContract,
|
8204
8239
|
dashboardContract,
|
8205
8240
|
evaluateFormContract,
|
8206
8241
|
extensionContract2 as extensionContract,
|
8242
|
+
generalTagSettingContract,
|
8207
8243
|
mailApiContract,
|
8208
8244
|
mailContract,
|
8209
8245
|
notificationContract,
|
@@ -8217,10 +8253,10 @@ export {
|
|
8217
8253
|
snippetSettingContract,
|
8218
8254
|
subscriptionContract,
|
8219
8255
|
tagContract,
|
8220
|
-
tagSettingContract,
|
8221
8256
|
telephonyCdrContract,
|
8222
8257
|
telephonyContract,
|
8223
8258
|
ticketContract2 as ticketContract,
|
8259
|
+
ticketSettingContract,
|
8224
8260
|
uploadContract,
|
8225
8261
|
userContract,
|
8226
8262
|
userNotificationContract,
|