@createiq/backend 1.0.10 → 1.0.12
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/client/types.gen.ts +4 -3
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/client/types.gen.ts
CHANGED
|
@@ -1571,7 +1571,7 @@ export type NegotiationSearchDto = {
|
|
|
1571
1571
|
query: Array<string>;
|
|
1572
1572
|
jobStatus?: 'failed' | 'pending';
|
|
1573
1573
|
pageIndex?: number;
|
|
1574
|
-
approvalType: Array<'general' | 'election'>;
|
|
1574
|
+
approvalType: Array<'general' | 'election' | 'custodian'>;
|
|
1575
1575
|
requestingUserId?: string;
|
|
1576
1576
|
partyC: Array<string>;
|
|
1577
1577
|
groupId: Array<string>;
|
|
@@ -2689,7 +2689,7 @@ export type MarkApprovalCommentsAsReadRequestDto = {
|
|
|
2689
2689
|
commentIds?: Array<string>;
|
|
2690
2690
|
};
|
|
2691
2691
|
|
|
2692
|
-
export type ApprovalType = 'general' | 'election';
|
|
2692
|
+
export type ApprovalType = 'general' | 'election' | 'custodian';
|
|
2693
2693
|
|
|
2694
2694
|
export type SelectedElectionsRequestDto = {
|
|
2695
2695
|
electionIds: Array<string>;
|
|
@@ -2743,6 +2743,7 @@ export type UserProfileDto = {
|
|
|
2743
2743
|
|
|
2744
2744
|
export type CausesDto = {
|
|
2745
2745
|
causeType: string;
|
|
2746
|
+
inputType: string;
|
|
2746
2747
|
description: string;
|
|
2747
2748
|
rulesBroken?: Array<DetailedInputValidationErrorDto>;
|
|
2748
2749
|
};
|
|
@@ -2978,7 +2979,7 @@ export type SubAccountContextStatisticsDto = {
|
|
|
2978
2979
|
|
|
2979
2980
|
export type LoginType = 'SSO' | 'UsernamePassword' | 'OneLink';
|
|
2980
2981
|
|
|
2981
|
-
export type NegotiationFilter_ApprovalType_ApprovalTypeValue = 'General' | 'Election';
|
|
2982
|
+
export type NegotiationFilter_ApprovalType_ApprovalTypeValue = 'General' | 'Election' | 'Custodian';
|
|
2982
2983
|
|
|
2983
2984
|
export type AdvisorRequestStatus = 'pending' | 'accepted' | 'rejected' | 'cancelled';
|
|
2984
2985
|
|
package/dist/index.d.cts
CHANGED
|
@@ -1379,7 +1379,7 @@ type NegotiationSearchDto = {
|
|
|
1379
1379
|
query: Array<string>;
|
|
1380
1380
|
jobStatus?: 'failed' | 'pending';
|
|
1381
1381
|
pageIndex?: number;
|
|
1382
|
-
approvalType: Array<'general' | 'election'>;
|
|
1382
|
+
approvalType: Array<'general' | 'election' | 'custodian'>;
|
|
1383
1383
|
requestingUserId?: string;
|
|
1384
1384
|
partyC: Array<string>;
|
|
1385
1385
|
groupId: Array<string>;
|
|
@@ -2332,7 +2332,7 @@ type DocumentWithPackDto = {
|
|
|
2332
2332
|
type MarkApprovalCommentsAsReadRequestDto = {
|
|
2333
2333
|
commentIds?: Array<string>;
|
|
2334
2334
|
};
|
|
2335
|
-
type ApprovalType = 'general' | 'election';
|
|
2335
|
+
type ApprovalType = 'general' | 'election' | 'custodian';
|
|
2336
2336
|
type SelectedElectionsRequestDto = {
|
|
2337
2337
|
electionIds: Array<string>;
|
|
2338
2338
|
};
|
|
@@ -2374,6 +2374,7 @@ type UserProfileDto = {
|
|
|
2374
2374
|
};
|
|
2375
2375
|
type CausesDto = {
|
|
2376
2376
|
causeType: string;
|
|
2377
|
+
inputType: string;
|
|
2377
2378
|
description: string;
|
|
2378
2379
|
rulesBroken?: Array<DetailedInputValidationErrorDto>;
|
|
2379
2380
|
};
|
|
@@ -2585,7 +2586,7 @@ type SubAccountContextStatisticsDto = {
|
|
|
2585
2586
|
};
|
|
2586
2587
|
};
|
|
2587
2588
|
type LoginType = 'SSO' | 'UsernamePassword' | 'OneLink';
|
|
2588
|
-
type NegotiationFilter_ApprovalType_ApprovalTypeValue = 'General' | 'Election';
|
|
2589
|
+
type NegotiationFilter_ApprovalType_ApprovalTypeValue = 'General' | 'Election' | 'Custodian';
|
|
2589
2590
|
type AdvisorRequestStatus = 'pending' | 'accepted' | 'rejected' | 'cancelled';
|
|
2590
2591
|
type AllowlistOrDenylist = 'allowlist' | 'denylist';
|
|
2591
2592
|
type TemplateSettingsDto = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1379,7 +1379,7 @@ type NegotiationSearchDto = {
|
|
|
1379
1379
|
query: Array<string>;
|
|
1380
1380
|
jobStatus?: 'failed' | 'pending';
|
|
1381
1381
|
pageIndex?: number;
|
|
1382
|
-
approvalType: Array<'general' | 'election'>;
|
|
1382
|
+
approvalType: Array<'general' | 'election' | 'custodian'>;
|
|
1383
1383
|
requestingUserId?: string;
|
|
1384
1384
|
partyC: Array<string>;
|
|
1385
1385
|
groupId: Array<string>;
|
|
@@ -2332,7 +2332,7 @@ type DocumentWithPackDto = {
|
|
|
2332
2332
|
type MarkApprovalCommentsAsReadRequestDto = {
|
|
2333
2333
|
commentIds?: Array<string>;
|
|
2334
2334
|
};
|
|
2335
|
-
type ApprovalType = 'general' | 'election';
|
|
2335
|
+
type ApprovalType = 'general' | 'election' | 'custodian';
|
|
2336
2336
|
type SelectedElectionsRequestDto = {
|
|
2337
2337
|
electionIds: Array<string>;
|
|
2338
2338
|
};
|
|
@@ -2374,6 +2374,7 @@ type UserProfileDto = {
|
|
|
2374
2374
|
};
|
|
2375
2375
|
type CausesDto = {
|
|
2376
2376
|
causeType: string;
|
|
2377
|
+
inputType: string;
|
|
2377
2378
|
description: string;
|
|
2378
2379
|
rulesBroken?: Array<DetailedInputValidationErrorDto>;
|
|
2379
2380
|
};
|
|
@@ -2585,7 +2586,7 @@ type SubAccountContextStatisticsDto = {
|
|
|
2585
2586
|
};
|
|
2586
2587
|
};
|
|
2587
2588
|
type LoginType = 'SSO' | 'UsernamePassword' | 'OneLink';
|
|
2588
|
-
type NegotiationFilter_ApprovalType_ApprovalTypeValue = 'General' | 'Election';
|
|
2589
|
+
type NegotiationFilter_ApprovalType_ApprovalTypeValue = 'General' | 'Election' | 'Custodian';
|
|
2589
2590
|
type AdvisorRequestStatus = 'pending' | 'accepted' | 'rejected' | 'cancelled';
|
|
2590
2591
|
type AllowlistOrDenylist = 'allowlist' | 'denylist';
|
|
2591
2592
|
type TemplateSettingsDto = {
|
package/package.json
CHANGED
package/swagger.json.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
e5f823dbdf88d9aee43e236ec215723e0c32b1ae284ae0eec172d65e975a0d6e
|