@pushwoosh/rpc-gateway-journey-data 0.26.320 → 0.26.321
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/commonTypes.js +1 -0
- package/data.js +2 -1
- package/index.js +1 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +113 -114
- package/pushwoosh_cj_journey.js +1 -0
- package/pushwoosh_cj_journey_category.d.ts +9 -9
- package/pushwoosh_cj_journey_category.js +1 -0
- package/pushwoosh_objects_filters_v1.d.ts +72 -72
- package/pushwoosh_objects_filters_v1.js +1 -0
package/commonTypes.js
CHANGED
package/data.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
+
/* Autogenerated code */
|
|
2
3
|
export const data = {
|
|
3
4
|
"pushwoosh.cj.journey.Journey": {
|
|
4
5
|
"type": "S",
|
|
@@ -798,7 +799,7 @@ export const data = {
|
|
|
798
799
|
"type": "number"
|
|
799
800
|
},
|
|
800
801
|
"avrCTR": {
|
|
801
|
-
"type": "
|
|
802
|
+
"type": "number"
|
|
802
803
|
}
|
|
803
804
|
}
|
|
804
805
|
},
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { DoubleValue as google_protobuf_DoubleValue } from './google_protobuf';
|
|
2
1
|
import { FilterExpression as pushwoosh_objects_filters_v1_FilterExpression } from './pushwoosh_objects_filters_v1';
|
|
3
2
|
export interface Journey {
|
|
4
3
|
GetJourneysList(request: GetJourneysListRequest): Promise<GetJourneysListResponse>;
|
|
@@ -46,7 +45,7 @@ export interface Journey {
|
|
|
46
45
|
GetWhatsAppPresetsByAppCode(request: GetWhatsAppPresetsByAppCodeRequest): Promise<GetWhatsAppPresetsByAppCodeResponse>;
|
|
47
46
|
}
|
|
48
47
|
export type GetPlaceholdersRequest = {
|
|
49
|
-
templateCode
|
|
48
|
+
templateCode: string;
|
|
50
49
|
};
|
|
51
50
|
export type GetPlaceholdersResponse = {
|
|
52
51
|
items: string[];
|
|
@@ -64,9 +63,9 @@ export type GetTagsResponse = {
|
|
|
64
63
|
payload: TagResponse[];
|
|
65
64
|
};
|
|
66
65
|
export type TagsAutocompleteRequest = {
|
|
67
|
-
query
|
|
68
|
-
tagName
|
|
69
|
-
tagType
|
|
66
|
+
query: string;
|
|
67
|
+
tagName: string;
|
|
68
|
+
tagType: TagType;
|
|
70
69
|
};
|
|
71
70
|
export type TagsAutocompleteResponse = {
|
|
72
71
|
payload: TagsAutocompleteResponsePayload;
|
|
@@ -96,19 +95,19 @@ export type AutocompleteValue = {
|
|
|
96
95
|
};
|
|
97
96
|
export type WinnerStrategy = 'ANY_GOAL' | 'SPECIFIC_GOAL';
|
|
98
97
|
export type UpdateABSSplitterParamsRequest = {
|
|
99
|
-
journeyUuid
|
|
100
|
-
pointUuid
|
|
101
|
-
params
|
|
102
|
-
autoSelectWinner
|
|
103
|
-
winnerStrategy
|
|
104
|
-
goalUuid
|
|
98
|
+
journeyUuid: string;
|
|
99
|
+
pointUuid: string;
|
|
100
|
+
params: number[];
|
|
101
|
+
autoSelectWinner: boolean;
|
|
102
|
+
winnerStrategy: WinnerStrategy;
|
|
103
|
+
goalUuid: string;
|
|
105
104
|
};
|
|
106
105
|
export type CloneJourneysRequest = {
|
|
107
|
-
journeyUuids
|
|
108
|
-
sourceAppCode
|
|
109
|
-
destAppCodes
|
|
110
|
-
cloneWithContent
|
|
111
|
-
title
|
|
106
|
+
journeyUuids: string[];
|
|
107
|
+
sourceAppCode: string;
|
|
108
|
+
destAppCodes: string[];
|
|
109
|
+
cloneWithContent: boolean;
|
|
110
|
+
title: string;
|
|
112
111
|
};
|
|
113
112
|
export type CloneJourneysResponse = {
|
|
114
113
|
clonedJourneys: Record<string, JourneyUUIDs>;
|
|
@@ -117,9 +116,9 @@ export type JourneyUUIDs = {
|
|
|
117
116
|
journeyUuids: string[];
|
|
118
117
|
};
|
|
119
118
|
export type GetJourneyQuickStatsByPointsRequest = {
|
|
120
|
-
uuid
|
|
121
|
-
fromDate
|
|
122
|
-
toDate
|
|
119
|
+
uuid: string;
|
|
120
|
+
fromDate: string;
|
|
121
|
+
toDate: string;
|
|
123
122
|
};
|
|
124
123
|
export type GetJourneyQuickStatsByPointsResponse = {
|
|
125
124
|
metadata: JourneyStatsByPointMeta;
|
|
@@ -255,7 +254,7 @@ export type PointStatDelay = {};
|
|
|
255
254
|
export type PointStatBooleanSplitter = {};
|
|
256
255
|
export type PointStatWaitEvent = {};
|
|
257
256
|
export type GetJourneyStatsRequest = {
|
|
258
|
-
journeyIds
|
|
257
|
+
journeyIds: string[];
|
|
259
258
|
};
|
|
260
259
|
export type GetJourneyStatsResponse = {
|
|
261
260
|
metadata: JourneyStatsMeta;
|
|
@@ -270,26 +269,26 @@ export type JourneyStatsPayloadGet = {
|
|
|
270
269
|
export type JourneySummaryStats = {
|
|
271
270
|
in: number;
|
|
272
271
|
goals: number;
|
|
273
|
-
avrCTR:
|
|
272
|
+
avrCTR: number;
|
|
274
273
|
};
|
|
275
274
|
export type RenameRequest = {
|
|
276
|
-
uuid
|
|
277
|
-
title
|
|
275
|
+
uuid: string;
|
|
276
|
+
title: string;
|
|
278
277
|
};
|
|
279
278
|
export type DeleteRequest = {
|
|
280
|
-
uuid
|
|
279
|
+
uuid: string;
|
|
281
280
|
};
|
|
282
281
|
export type CreateRequest = {
|
|
283
|
-
title
|
|
284
|
-
params
|
|
285
|
-
points
|
|
286
|
-
comments
|
|
282
|
+
title: string;
|
|
283
|
+
params: JourneyParams;
|
|
284
|
+
points: Point[];
|
|
285
|
+
comments: JourneyComment[];
|
|
287
286
|
};
|
|
288
287
|
export type GetHistoryRequest = {
|
|
289
|
-
uuid
|
|
290
|
-
userId
|
|
291
|
-
pageSize
|
|
292
|
-
page
|
|
288
|
+
uuid: string;
|
|
289
|
+
userId: number;
|
|
290
|
+
pageSize: number;
|
|
291
|
+
page: number;
|
|
293
292
|
};
|
|
294
293
|
export type GetHistoryResponse = {
|
|
295
294
|
items: HistoryItem[];
|
|
@@ -408,30 +407,30 @@ export type CommentsChangelog = {
|
|
|
408
407
|
commentPositions: ChangelogRecords;
|
|
409
408
|
};
|
|
410
409
|
export type UpdateJourneyRequest = {
|
|
411
|
-
uuid
|
|
412
|
-
title
|
|
413
|
-
params
|
|
414
|
-
points
|
|
415
|
-
comments
|
|
416
|
-
autosave
|
|
410
|
+
uuid: string;
|
|
411
|
+
title: string;
|
|
412
|
+
params: JourneyParams;
|
|
413
|
+
points: Point[];
|
|
414
|
+
comments: JourneyComment[];
|
|
415
|
+
autosave: boolean;
|
|
417
416
|
};
|
|
418
417
|
export type GetJourneysListRequest = {
|
|
419
|
-
applicationCode
|
|
420
|
-
statuses
|
|
421
|
-
categoryUuids
|
|
422
|
-
filterTitle
|
|
423
|
-
sorting
|
|
424
|
-
page
|
|
425
|
-
pageSize
|
|
426
|
-
campaignTypes
|
|
427
|
-
uuidList
|
|
418
|
+
applicationCode: string;
|
|
419
|
+
statuses: JourneyStatus[];
|
|
420
|
+
categoryUuids: string[];
|
|
421
|
+
filterTitle: string;
|
|
422
|
+
sorting: Sorting[];
|
|
423
|
+
page: number;
|
|
424
|
+
pageSize: number;
|
|
425
|
+
campaignTypes: CampaignType[];
|
|
426
|
+
uuidList: string[];
|
|
428
427
|
};
|
|
429
428
|
export type GetJourneysListResponse = {
|
|
430
429
|
journeys: Info[];
|
|
431
430
|
total: number;
|
|
432
431
|
};
|
|
433
432
|
export type GetJourneyByUUIDRequest = {
|
|
434
|
-
uuid
|
|
433
|
+
uuid: string;
|
|
435
434
|
};
|
|
436
435
|
export type GetJourneyByUUIDResponse = {
|
|
437
436
|
info: Info;
|
|
@@ -497,61 +496,61 @@ export type UpdateAndResumeJourneyResponseV2 = {
|
|
|
497
496
|
validation: ValidateJourneyResponse;
|
|
498
497
|
};
|
|
499
498
|
export type StartJourneyV2Request = {
|
|
500
|
-
uuid
|
|
499
|
+
uuid: string;
|
|
501
500
|
};
|
|
502
501
|
export type PauseJourneyV2Request = {
|
|
503
|
-
uuid
|
|
502
|
+
uuid: string;
|
|
504
503
|
};
|
|
505
504
|
export type FinishJourneyV2Request = {
|
|
506
|
-
uuid
|
|
505
|
+
uuid: string;
|
|
507
506
|
};
|
|
508
507
|
export type DraftJourneyV2Request = {
|
|
509
|
-
uuid
|
|
508
|
+
uuid: string;
|
|
510
509
|
};
|
|
511
510
|
export type ArchiveJourneyV2Request = {
|
|
512
|
-
uuid
|
|
511
|
+
uuid: string;
|
|
513
512
|
};
|
|
514
513
|
export type UpdateJourneyV2Request = {
|
|
515
|
-
uuid
|
|
516
|
-
title
|
|
517
|
-
params
|
|
518
|
-
points
|
|
519
|
-
comments
|
|
520
|
-
autosave
|
|
514
|
+
uuid: string;
|
|
515
|
+
title: string;
|
|
516
|
+
params: JourneyParams;
|
|
517
|
+
points: Point[];
|
|
518
|
+
comments: JourneyComment[];
|
|
519
|
+
autosave: boolean;
|
|
521
520
|
};
|
|
522
521
|
export type UpdateAndResumeJourneyV2Request = {
|
|
523
|
-
uuid
|
|
524
|
-
title
|
|
525
|
-
params
|
|
526
|
-
points
|
|
527
|
-
comments
|
|
528
|
-
autosave
|
|
522
|
+
uuid: string;
|
|
523
|
+
title: string;
|
|
524
|
+
params: JourneyParams;
|
|
525
|
+
points: Point[];
|
|
526
|
+
comments: JourneyComment[];
|
|
527
|
+
autosave: boolean;
|
|
529
528
|
};
|
|
530
529
|
export type CreateV2Request = {
|
|
531
|
-
title
|
|
532
|
-
params
|
|
533
|
-
points
|
|
534
|
-
comments
|
|
530
|
+
title: string;
|
|
531
|
+
params: JourneyParams;
|
|
532
|
+
points: Point[];
|
|
533
|
+
comments: JourneyComment[];
|
|
535
534
|
};
|
|
536
535
|
export type RenameV2Request = {
|
|
537
|
-
uuid
|
|
538
|
-
title
|
|
536
|
+
uuid: string;
|
|
537
|
+
title: string;
|
|
539
538
|
};
|
|
540
539
|
export type UpdateABSSplitterParamsV2Request = {
|
|
541
|
-
journeyUuid
|
|
542
|
-
pointUuid
|
|
543
|
-
params
|
|
544
|
-
autoSelectWinner
|
|
545
|
-
winnerStrategy
|
|
546
|
-
goalUuid
|
|
540
|
+
journeyUuid: string;
|
|
541
|
+
pointUuid: string;
|
|
542
|
+
params: number[];
|
|
543
|
+
autoSelectWinner: boolean;
|
|
544
|
+
winnerStrategy: WinnerStrategy;
|
|
545
|
+
goalUuid: string;
|
|
547
546
|
};
|
|
548
547
|
export type ValidateJourneyV2Request = {
|
|
549
|
-
uuid
|
|
548
|
+
uuid: string;
|
|
550
549
|
};
|
|
551
550
|
export type MoveJourneysToCategoryRequest = {
|
|
552
|
-
journeyUuids
|
|
553
|
-
categoryUuid
|
|
554
|
-
applicationCode
|
|
551
|
+
journeyUuids: string[];
|
|
552
|
+
categoryUuid: string;
|
|
553
|
+
applicationCode: string;
|
|
555
554
|
};
|
|
556
555
|
export type MoveJourneysToCategoryResponse = {
|
|
557
556
|
journeys: Info[];
|
|
@@ -569,8 +568,8 @@ export type PointValidationError = {
|
|
|
569
568
|
message: string;
|
|
570
569
|
};
|
|
571
570
|
export type GetUserFlowRequest = {
|
|
572
|
-
uuid
|
|
573
|
-
userId
|
|
571
|
+
uuid: string;
|
|
572
|
+
userId: string;
|
|
574
573
|
};
|
|
575
574
|
export type GetUserFlowResponse_Status = 'success' | 'error' | 'break_path';
|
|
576
575
|
export type GetUserFlowResponse_Point = {
|
|
@@ -1279,9 +1278,9 @@ export type InboxOptions = {
|
|
|
1279
1278
|
richMediaCode: string;
|
|
1280
1279
|
};
|
|
1281
1280
|
export type GetJourneyStatsByPointsExternalRequest = {
|
|
1282
|
-
uuid
|
|
1283
|
-
fromDate
|
|
1284
|
-
toDate
|
|
1281
|
+
uuid: string;
|
|
1282
|
+
fromDate: string;
|
|
1283
|
+
toDate: string;
|
|
1285
1284
|
};
|
|
1286
1285
|
export type GetJourneyStatsByPointsExternalResponse = {
|
|
1287
1286
|
payload: JourneyStatsByPointsExternalResponsePayload;
|
|
@@ -1297,9 +1296,9 @@ export type JourneyStatsByPointsExternalItemGet = {
|
|
|
1297
1296
|
pointStat: PointStat;
|
|
1298
1297
|
};
|
|
1299
1298
|
export type GetJourneyStatsByPointRequest = {
|
|
1300
|
-
uuid
|
|
1301
|
-
fromDate
|
|
1302
|
-
toDate
|
|
1299
|
+
uuid: string;
|
|
1300
|
+
fromDate: string;
|
|
1301
|
+
toDate: string;
|
|
1303
1302
|
};
|
|
1304
1303
|
export type GetJourneyStatsByPointResponse = {
|
|
1305
1304
|
metadata: JourneyStatsByPointMeta;
|
|
@@ -1396,10 +1395,10 @@ export type AccountRestrictionValues = {
|
|
|
1396
1395
|
allowCjLine: boolean;
|
|
1397
1396
|
};
|
|
1398
1397
|
export type GetJourneyGeneralTimeStatisticsRequest = {
|
|
1399
|
-
uuid
|
|
1400
|
-
application
|
|
1401
|
-
timestampFrom
|
|
1402
|
-
timestampTo
|
|
1398
|
+
uuid: string;
|
|
1399
|
+
application: string;
|
|
1400
|
+
timestampFrom: string;
|
|
1401
|
+
timestampTo: string;
|
|
1403
1402
|
};
|
|
1404
1403
|
export type GetJourneyGeneralTimeStatisticsResponse_MetricTimeseries = {
|
|
1405
1404
|
breakdown: string;
|
|
@@ -1418,13 +1417,13 @@ export type GetJourneyGeneralTimeStatisticsResponse = {
|
|
|
1418
1417
|
recipients: number;
|
|
1419
1418
|
};
|
|
1420
1419
|
export type GetJourneyUsersRequest = {
|
|
1421
|
-
uuid
|
|
1422
|
-
application
|
|
1423
|
-
search
|
|
1424
|
-
timestampFrom
|
|
1425
|
-
timestampTo
|
|
1426
|
-
pageSize
|
|
1427
|
-
page
|
|
1420
|
+
uuid: string;
|
|
1421
|
+
application: string;
|
|
1422
|
+
search: string;
|
|
1423
|
+
timestampFrom: string;
|
|
1424
|
+
timestampTo: string;
|
|
1425
|
+
pageSize: number;
|
|
1426
|
+
page: number;
|
|
1428
1427
|
};
|
|
1429
1428
|
export type UserStatus = 'unknown' | 'inJourneyNow' | 'exited' | 'droppedOff' | 'goalReached';
|
|
1430
1429
|
export type GetJourneyUsersResponse_UserPoint = {
|
|
@@ -1441,12 +1440,12 @@ export type GetJourneyUsersResponse = {
|
|
|
1441
1440
|
};
|
|
1442
1441
|
export type Channel = 'CHANNEL_UNSPECIFIED' | 'PUSH' | 'EMAIL' | 'WHATSAPP' | 'SMS' | 'IN_APP';
|
|
1443
1442
|
export type GetJourneyMetricsRequest = {
|
|
1444
|
-
uuid
|
|
1445
|
-
application
|
|
1446
|
-
timestampFrom
|
|
1447
|
-
timestampTo
|
|
1448
|
-
timezone
|
|
1449
|
-
channels
|
|
1443
|
+
uuid: string;
|
|
1444
|
+
application: string;
|
|
1445
|
+
timestampFrom: Date;
|
|
1446
|
+
timestampTo: Date;
|
|
1447
|
+
timezone: string;
|
|
1448
|
+
channels: Channel[];
|
|
1450
1449
|
};
|
|
1451
1450
|
export type GetJourneyMetricsResponse_PushMetrics = {
|
|
1452
1451
|
sends: number[];
|
|
@@ -1531,12 +1530,12 @@ export type GetJourneyMetricsResponse = {
|
|
|
1531
1530
|
totals: GetJourneyMetricsResponse_ChannelTotals;
|
|
1532
1531
|
};
|
|
1533
1532
|
export type GetJourneyDeliveryReportRequest = {
|
|
1534
|
-
application
|
|
1535
|
-
uuid
|
|
1536
|
-
timestampFrom
|
|
1537
|
-
timestampTo
|
|
1538
|
-
timezone
|
|
1539
|
-
channels
|
|
1533
|
+
application: string;
|
|
1534
|
+
uuid: string;
|
|
1535
|
+
timestampFrom: Date;
|
|
1536
|
+
timestampTo: Date;
|
|
1537
|
+
timezone: string;
|
|
1538
|
+
channels: Channel[];
|
|
1540
1539
|
};
|
|
1541
1540
|
export type GetJourneyDeliveryReportResponse_DeliveryError = {
|
|
1542
1541
|
name: string;
|
|
@@ -1559,7 +1558,7 @@ export type AttributeEntry = {
|
|
|
1559
1558
|
attributeName: string;
|
|
1560
1559
|
};
|
|
1561
1560
|
export type GetVoucherPoolsRequest = {
|
|
1562
|
-
applicationCode
|
|
1561
|
+
applicationCode: string;
|
|
1563
1562
|
};
|
|
1564
1563
|
export type GetVoucherPoolsResponse = {
|
|
1565
1564
|
payload: VoucherPool[];
|
|
@@ -1568,7 +1567,7 @@ export type VoucherPool = {
|
|
|
1568
1567
|
name: string;
|
|
1569
1568
|
};
|
|
1570
1569
|
export type GetWhatsAppPresetsByAppCodeRequest = {
|
|
1571
|
-
code
|
|
1570
|
+
code: string;
|
|
1572
1571
|
};
|
|
1573
1572
|
export type GetWhatsAppPresetsByAppCodeResponse = {
|
|
1574
1573
|
payload: WhatsAppPresetsByAppCodePayload;
|
package/pushwoosh_cj_journey.js
CHANGED
|
@@ -5,30 +5,30 @@ export interface Category {
|
|
|
5
5
|
DeleteCategory(request: DeleteCategoryRequest): Promise<DeleteCategoryResponse>;
|
|
6
6
|
}
|
|
7
7
|
export type GetCategoriesListRequest = {
|
|
8
|
-
applicationCode
|
|
9
|
-
page
|
|
10
|
-
pageSize
|
|
8
|
+
applicationCode: string;
|
|
9
|
+
page: number;
|
|
10
|
+
pageSize: number;
|
|
11
11
|
};
|
|
12
12
|
export type GetCategoriesListResponse = {
|
|
13
13
|
categories: Info[];
|
|
14
14
|
};
|
|
15
15
|
export type CreateCategoryRequest = {
|
|
16
|
-
applicationCode
|
|
17
|
-
title
|
|
16
|
+
applicationCode: string;
|
|
17
|
+
title: string;
|
|
18
18
|
};
|
|
19
19
|
export type CreateCategoryResponse = {
|
|
20
20
|
category: Info;
|
|
21
21
|
};
|
|
22
22
|
export type UpdateCategoryRequest = {
|
|
23
|
-
applicationCode
|
|
24
|
-
title
|
|
25
|
-
uuid
|
|
23
|
+
applicationCode: string;
|
|
24
|
+
title: string;
|
|
25
|
+
uuid: string;
|
|
26
26
|
};
|
|
27
27
|
export type UpdateCategoryResponse = {
|
|
28
28
|
category: Info;
|
|
29
29
|
};
|
|
30
30
|
export type DeleteCategoryRequest = {
|
|
31
|
-
uuid
|
|
31
|
+
uuid: string;
|
|
32
32
|
};
|
|
33
33
|
export type DeleteCategoryResponse = {
|
|
34
34
|
affectedJourneyUuids: string[];
|
|
@@ -248,163 +248,163 @@ export interface FiltersCrudService {
|
|
|
248
248
|
UpdateDeviceLoadPolicy(request: UpdateDeviceLoadPolicyRequest): Promise<{}>;
|
|
249
249
|
}
|
|
250
250
|
export type CreateRequest = {
|
|
251
|
-
Code
|
|
252
|
-
AccountID
|
|
253
|
-
Name
|
|
254
|
-
ApplicationID
|
|
255
|
-
IsFiltrationInProgress
|
|
256
|
-
FiltrationStartedAt
|
|
257
|
-
FiltrationLastFilteredAt
|
|
258
|
-
FiltrationLastCheckedAt
|
|
259
|
-
FiltrationScheduledAt
|
|
260
|
-
CheckerScheduledAt
|
|
261
|
-
IsSystem
|
|
262
|
-
ExpirationDate
|
|
263
|
-
Created
|
|
264
|
-
FilterExpressionRaw
|
|
265
|
-
FiltrationID
|
|
266
|
-
Updated
|
|
267
|
-
Description
|
|
268
|
-
DeviceLoadPolicy
|
|
251
|
+
Code: string;
|
|
252
|
+
AccountID: number;
|
|
253
|
+
Name: string;
|
|
254
|
+
ApplicationID: number;
|
|
255
|
+
IsFiltrationInProgress: boolean;
|
|
256
|
+
FiltrationStartedAt: Date;
|
|
257
|
+
FiltrationLastFilteredAt: Date;
|
|
258
|
+
FiltrationLastCheckedAt: Date;
|
|
259
|
+
FiltrationScheduledAt: Date;
|
|
260
|
+
CheckerScheduledAt: Date;
|
|
261
|
+
IsSystem: boolean;
|
|
262
|
+
ExpirationDate: Date;
|
|
263
|
+
Created: Date;
|
|
264
|
+
FilterExpressionRaw: string;
|
|
265
|
+
FiltrationID: string;
|
|
266
|
+
Updated: Date;
|
|
267
|
+
Description: string;
|
|
268
|
+
DeviceLoadPolicy: string;
|
|
269
269
|
};
|
|
270
270
|
export type CreateResponse = {
|
|
271
271
|
filter: Filter;
|
|
272
272
|
};
|
|
273
273
|
export type CreateManyRequest = {
|
|
274
|
-
filters
|
|
274
|
+
filters: CreateRequest[];
|
|
275
275
|
};
|
|
276
276
|
export type CreateManyResponse = {
|
|
277
277
|
filters: CreateResponse[];
|
|
278
278
|
};
|
|
279
279
|
export type DeleteRequest = {
|
|
280
|
-
ID
|
|
280
|
+
ID: number;
|
|
281
281
|
};
|
|
282
282
|
export type DeleteManyRequest = {
|
|
283
|
-
where
|
|
283
|
+
where: LogicExpression;
|
|
284
284
|
};
|
|
285
285
|
export type DeleteManyResponse = {
|
|
286
286
|
count: number;
|
|
287
287
|
};
|
|
288
288
|
export type CountRequest = {
|
|
289
|
-
where
|
|
289
|
+
where: LogicExpression;
|
|
290
290
|
};
|
|
291
291
|
export type CountResponse = {
|
|
292
292
|
count: number;
|
|
293
293
|
};
|
|
294
294
|
export type GetPageRequest = {
|
|
295
|
-
where
|
|
296
|
-
sort
|
|
297
|
-
pageSize
|
|
298
|
-
pageNum
|
|
299
|
-
forLock
|
|
295
|
+
where: LogicExpression;
|
|
296
|
+
sort: SortExpression;
|
|
297
|
+
pageSize: number;
|
|
298
|
+
pageNum: number;
|
|
299
|
+
forLock: ForExpression;
|
|
300
300
|
};
|
|
301
301
|
export type GetPageResponse = {
|
|
302
302
|
filters: Filter[];
|
|
303
303
|
total: number;
|
|
304
304
|
};
|
|
305
305
|
export type ListRequest = {
|
|
306
|
-
where
|
|
307
|
-
sort
|
|
308
|
-
pageSize
|
|
309
|
-
forLock
|
|
306
|
+
where: LogicExpression;
|
|
307
|
+
sort: SortExpression;
|
|
308
|
+
pageSize: number;
|
|
309
|
+
forLock: ForExpression;
|
|
310
310
|
};
|
|
311
311
|
export type ListResponse = {
|
|
312
312
|
paginationToken: string;
|
|
313
313
|
};
|
|
314
314
|
export type PaginateRequest = {
|
|
315
|
-
nextPageToken
|
|
315
|
+
nextPageToken: string;
|
|
316
316
|
};
|
|
317
317
|
export type PaginateResponse = {
|
|
318
318
|
filters: Filter[];
|
|
319
319
|
nextPageToken: string;
|
|
320
320
|
};
|
|
321
321
|
export type UpdateCodeRequest = {
|
|
322
|
-
ID
|
|
323
|
-
value
|
|
322
|
+
ID: number;
|
|
323
|
+
value: string;
|
|
324
324
|
};
|
|
325
325
|
export type UpdateAccountIDRequest = {
|
|
326
|
-
ID
|
|
327
|
-
value
|
|
326
|
+
ID: number;
|
|
327
|
+
value: number;
|
|
328
328
|
};
|
|
329
329
|
export type UpdateNameRequest = {
|
|
330
|
-
ID
|
|
331
|
-
value
|
|
330
|
+
ID: number;
|
|
331
|
+
value: string;
|
|
332
332
|
};
|
|
333
333
|
export type UpdateApplicationIDRequest = {
|
|
334
|
-
ID
|
|
335
|
-
value
|
|
334
|
+
ID: number;
|
|
335
|
+
value: number;
|
|
336
336
|
};
|
|
337
337
|
export type UpdateIsFiltrationInProgressRequest = {
|
|
338
|
-
ID
|
|
339
|
-
value
|
|
338
|
+
ID: number;
|
|
339
|
+
value: boolean;
|
|
340
340
|
};
|
|
341
341
|
export type UpdateFiltrationStartedAtRequest = {
|
|
342
|
-
ID
|
|
343
|
-
value
|
|
342
|
+
ID: number;
|
|
343
|
+
value: Date;
|
|
344
344
|
};
|
|
345
345
|
export type UpdateFiltrationLastFilteredAtRequest = {
|
|
346
|
-
ID
|
|
347
|
-
value
|
|
346
|
+
ID: number;
|
|
347
|
+
value: Date;
|
|
348
348
|
};
|
|
349
349
|
export type UpdateFiltrationLastCheckedAtRequest = {
|
|
350
|
-
ID
|
|
351
|
-
value
|
|
350
|
+
ID: number;
|
|
351
|
+
value: Date;
|
|
352
352
|
};
|
|
353
353
|
export type UpdateFiltrationScheduledAtRequest = {
|
|
354
|
-
ID
|
|
355
|
-
value
|
|
354
|
+
ID: number;
|
|
355
|
+
value: Date;
|
|
356
356
|
};
|
|
357
357
|
export type UpdateCheckerScheduledAtRequest = {
|
|
358
|
-
ID
|
|
359
|
-
value
|
|
358
|
+
ID: number;
|
|
359
|
+
value: Date;
|
|
360
360
|
};
|
|
361
361
|
export type UpdateIsSystemRequest = {
|
|
362
|
-
ID
|
|
363
|
-
value
|
|
362
|
+
ID: number;
|
|
363
|
+
value: boolean;
|
|
364
364
|
};
|
|
365
365
|
export type UpdateExpirationDateRequest = {
|
|
366
|
-
ID
|
|
367
|
-
value
|
|
366
|
+
ID: number;
|
|
367
|
+
value: Date;
|
|
368
368
|
};
|
|
369
369
|
export type UpdateCreatedRequest = {
|
|
370
|
-
ID
|
|
371
|
-
value
|
|
370
|
+
ID: number;
|
|
371
|
+
value: Date;
|
|
372
372
|
};
|
|
373
373
|
export type UpdateFilterExpressionRawRequest = {
|
|
374
|
-
ID
|
|
375
|
-
value
|
|
374
|
+
ID: number;
|
|
375
|
+
value: string;
|
|
376
376
|
};
|
|
377
377
|
export type UpdateFiltrationIDRequest = {
|
|
378
|
-
ID
|
|
379
|
-
value
|
|
378
|
+
ID: number;
|
|
379
|
+
value: string;
|
|
380
380
|
};
|
|
381
381
|
export type UpdateUpdatedRequest = {
|
|
382
|
-
ID
|
|
383
|
-
value
|
|
382
|
+
ID: number;
|
|
383
|
+
value: Date;
|
|
384
384
|
};
|
|
385
385
|
export type UpdateDescriptionRequest = {
|
|
386
|
-
ID
|
|
387
|
-
value
|
|
386
|
+
ID: number;
|
|
387
|
+
value: string;
|
|
388
388
|
};
|
|
389
389
|
export type UpdateDeviceLoadPolicyRequest = {
|
|
390
|
-
ID
|
|
391
|
-
value
|
|
390
|
+
ID: number;
|
|
391
|
+
value: string;
|
|
392
392
|
};
|
|
393
393
|
export type GetRequest = {
|
|
394
|
-
ID
|
|
394
|
+
ID: number;
|
|
395
395
|
};
|
|
396
396
|
export type GetResponse = {
|
|
397
397
|
filter: Filter;
|
|
398
398
|
};
|
|
399
399
|
export type LoadByCodeRequest = {
|
|
400
|
-
Code
|
|
400
|
+
Code: string;
|
|
401
401
|
};
|
|
402
402
|
export type LoadByCodeResponse = {
|
|
403
403
|
filter: Filter;
|
|
404
404
|
};
|
|
405
405
|
export type LoadByAccountIDNameRequest = {
|
|
406
|
-
AccountID
|
|
407
|
-
Name
|
|
406
|
+
AccountID: number;
|
|
407
|
+
Name: string;
|
|
408
408
|
};
|
|
409
409
|
export type LoadByAccountIDNameResponse = {
|
|
410
410
|
filter: Filter;
|