@epilot/cli 0.1.11 → 0.1.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/README.md +16 -19
- package/definitions/automation.json +214 -1
- package/definitions/blueprint-manifest.json +1279 -150
- package/definitions/data-governance.json +1126 -0
- package/definitions/deduplication.json +135 -4
- package/definitions/design.json +103 -57
- package/definitions/email-settings.json +29 -0
- package/definitions/entity.json +88 -6
- package/definitions/erp-integration.json +1819 -187
- package/definitions/integration-toolkit.json +7998 -0
- package/definitions/message.json +202 -0
- package/definitions/sharing.json +956 -0
- package/definitions/template-variables.json +12 -4
- package/definitions/workflow-definition.json +87 -202
- package/definitions/workflow.json +102 -0
- package/dist/{add-component-IW4644NE.js → add-component-AAVQVPKK.js} +68 -13
- package/dist/app-I3XXHZLD.js +24 -0
- package/dist/bin/epilot.js +10 -9
- package/dist/{chunk-POCU2J27.js → chunk-CEP7S7X3.js} +2 -1
- package/dist/{chunk-K2UQOP3Q.js → chunk-F6KWKTQJ.js} +104 -59
- package/dist/{completion-HTO64G2S.js → completion-QP4IYMVI.js} +1 -1
- package/dist/{data-management-KXAPA7ZU.js → data-governance-DJAAIE6F.js} +5 -5
- package/dist/{deploy-UQZAUHAB.js → deploy-4XDFWOEV.js} +1 -1
- package/dist/{export-US5GMHTS.js → export-JA5N4JCJ.js} +1 -1
- package/dist/{init-DGPWBRRB.js → init-5KGNJEWF.js} +1 -1
- package/dist/integration-toolkit-4CLQDSK7.js +54 -0
- package/dist/{remove-component-B2GMICMD.js → remove-component-LXSRR23E.js} +1 -1
- package/dist/{review-QFPON37R.js → review-HFOO3NXE.js} +1 -1
- package/dist/{erp-integration-DXFYJ2F3.js → sharing-X5U53KSU.js} +5 -5
- package/dist/{upgrade-KZSOPDCR.js → upgrade-SYSSIAQC.js} +1 -1
- package/dist/{validate-G7K6AVBI.js → validate-TUMXW56Y.js} +1 -1
- package/dist/{versions-UTPAWTIU.js → versions-ZTWQAGXY.js} +1 -1
- package/package.json +1 -1
- package/definitions/data-management.json +0 -972
- package/dist/app-BKS7M4UQ.js +0 -24
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.2",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0",
|
|
5
5
|
"title": "Deduplication API",
|
|
6
6
|
"description": "Backend for Epilot Deduplication feature"
|
|
7
7
|
},
|
|
@@ -39,6 +39,69 @@
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
+
},
|
|
43
|
+
"/v1/deduplicate/job": {
|
|
44
|
+
"post": {
|
|
45
|
+
"operationId": "deduplicateAsync",
|
|
46
|
+
"summary": "deduplicateAsync",
|
|
47
|
+
"description": "Submits an async deduplication job. Returns a job ID immediately. Poll GET /v1/deduplicate/jobs/{jobId} for status.",
|
|
48
|
+
"tags": [],
|
|
49
|
+
"requestBody": {
|
|
50
|
+
"content": {
|
|
51
|
+
"application/json": {
|
|
52
|
+
"schema": {
|
|
53
|
+
"$ref": "#/components/schemas/DeduplicateRequestBody"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"responses": {
|
|
59
|
+
"202": {
|
|
60
|
+
"description": "Job accepted. Use the returned jobId to poll for status.",
|
|
61
|
+
"content": {
|
|
62
|
+
"application/json": {
|
|
63
|
+
"schema": {
|
|
64
|
+
"$ref": "#/components/schemas/DeduplicateAsyncResponse"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"/v1/deduplicate/jobs/{jobId}": {
|
|
73
|
+
"get": {
|
|
74
|
+
"operationId": "getDeduplicationJob",
|
|
75
|
+
"summary": "getDeduplicationJob",
|
|
76
|
+
"description": "Returns the current status of an async deduplication job",
|
|
77
|
+
"tags": [],
|
|
78
|
+
"parameters": [
|
|
79
|
+
{
|
|
80
|
+
"name": "jobId",
|
|
81
|
+
"in": "path",
|
|
82
|
+
"required": true,
|
|
83
|
+
"schema": {
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
"description": "The job ID returned by POST /v1/deduplicate/job"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"responses": {
|
|
90
|
+
"200": {
|
|
91
|
+
"description": "Current job status",
|
|
92
|
+
"content": {
|
|
93
|
+
"application/json": {
|
|
94
|
+
"schema": {
|
|
95
|
+
"$ref": "#/components/schemas/DeduplicationJob"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"404": {
|
|
101
|
+
"description": "Job not found"
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
42
105
|
}
|
|
43
106
|
},
|
|
44
107
|
"components": {
|
|
@@ -169,13 +232,81 @@
|
|
|
169
232
|
"_id"
|
|
170
233
|
],
|
|
171
234
|
"description": "Base Entity schema"
|
|
235
|
+
},
|
|
236
|
+
"DeduplicateAsyncResponse": {
|
|
237
|
+
"type": "object",
|
|
238
|
+
"properties": {
|
|
239
|
+
"jobId": {
|
|
240
|
+
"type": "string",
|
|
241
|
+
"description": "Job ID to poll for status via GET /v1/deduplicate/jobs/{jobId}"
|
|
242
|
+
},
|
|
243
|
+
"status": {
|
|
244
|
+
"$ref": "#/components/schemas/JobStatus"
|
|
245
|
+
},
|
|
246
|
+
"message": {
|
|
247
|
+
"type": "string",
|
|
248
|
+
"description": "Initial status message"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
"required": [
|
|
252
|
+
"jobId",
|
|
253
|
+
"status",
|
|
254
|
+
"message"
|
|
255
|
+
],
|
|
256
|
+
"description": "Response returned immediately when a deduplication job is submitted"
|
|
257
|
+
},
|
|
258
|
+
"JobStatus": {
|
|
259
|
+
"type": "string",
|
|
260
|
+
"enum": [
|
|
261
|
+
"pending",
|
|
262
|
+
"processing",
|
|
263
|
+
"completed",
|
|
264
|
+
"failed"
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
"DeduplicationJob": {
|
|
268
|
+
"type": "object",
|
|
269
|
+
"properties": {
|
|
270
|
+
"jobId": {
|
|
271
|
+
"type": "string",
|
|
272
|
+
"description": "Unique identifier for the deduplication job"
|
|
273
|
+
},
|
|
274
|
+
"status": {
|
|
275
|
+
"$ref": "#/components/schemas/JobStatus"
|
|
276
|
+
},
|
|
277
|
+
"message": {
|
|
278
|
+
"type": "string",
|
|
279
|
+
"description": "Human-readable status message (e.g. progress info or error details)"
|
|
280
|
+
},
|
|
281
|
+
"result": {
|
|
282
|
+
"type": "array",
|
|
283
|
+
"items": {
|
|
284
|
+
"$ref": "#/components/schemas/Entity"
|
|
285
|
+
},
|
|
286
|
+
"description": "Array of deduplicated entities, present when status is completed"
|
|
287
|
+
},
|
|
288
|
+
"createdAt": {
|
|
289
|
+
"type": "string",
|
|
290
|
+
"description": "ISO 8601 timestamp of job creation",
|
|
291
|
+
"format": "date-time"
|
|
292
|
+
},
|
|
293
|
+
"updatedAt": {
|
|
294
|
+
"type": "string",
|
|
295
|
+
"description": "ISO 8601 timestamp of last update",
|
|
296
|
+
"format": "date-time"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"required": [
|
|
300
|
+
"jobId",
|
|
301
|
+
"status",
|
|
302
|
+
"createdAt",
|
|
303
|
+
"updatedAt"
|
|
304
|
+
],
|
|
305
|
+
"description": "Represents an async deduplication job"
|
|
172
306
|
}
|
|
173
307
|
}
|
|
174
308
|
},
|
|
175
309
|
"servers": [
|
|
176
|
-
{
|
|
177
|
-
"url": "https://deduplication.sls.epilot.io"
|
|
178
|
-
},
|
|
179
310
|
{
|
|
180
311
|
"url": "https://deduplication.sls.epilot.io"
|
|
181
312
|
}
|
package/definitions/design.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Design Builder API v2",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.2"
|
|
6
6
|
},
|
|
7
7
|
"tags": [
|
|
8
8
|
{
|
|
@@ -12,7 +12,17 @@
|
|
|
12
12
|
],
|
|
13
13
|
"servers": [
|
|
14
14
|
{
|
|
15
|
-
"url": "https://design-builder-api.epilot.io"
|
|
15
|
+
"url": "https://design-builder-api.{environment}.epilot.io",
|
|
16
|
+
"variables": {
|
|
17
|
+
"environment": {
|
|
18
|
+
"default": "sls",
|
|
19
|
+
"enum": [
|
|
20
|
+
"sls",
|
|
21
|
+
"dev.sls",
|
|
22
|
+
"staging.sls"
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
}
|
|
16
26
|
}
|
|
17
27
|
],
|
|
18
28
|
"security": [
|
|
@@ -35,10 +45,7 @@
|
|
|
35
45
|
"content": {
|
|
36
46
|
"application/json": {
|
|
37
47
|
"schema": {
|
|
38
|
-
"
|
|
39
|
-
"items": {
|
|
40
|
-
"$ref": "#/components/schemas/GetAllDesignsRes"
|
|
41
|
-
}
|
|
48
|
+
"$ref": "#/components/schemas/GetAllDesignsRes"
|
|
42
49
|
}
|
|
43
50
|
}
|
|
44
51
|
}
|
|
@@ -129,12 +136,10 @@
|
|
|
129
136
|
{
|
|
130
137
|
"in": "path",
|
|
131
138
|
"name": "designId",
|
|
132
|
-
"schema": {
|
|
133
|
-
"type": "string"
|
|
134
|
-
},
|
|
135
139
|
"required": true,
|
|
136
|
-
"
|
|
137
|
-
|
|
140
|
+
"schema": {
|
|
141
|
+
"$ref": "#/components/schemas/DesignId"
|
|
142
|
+
}
|
|
138
143
|
}
|
|
139
144
|
],
|
|
140
145
|
"responses": {
|
|
@@ -194,12 +199,10 @@
|
|
|
194
199
|
{
|
|
195
200
|
"in": "path",
|
|
196
201
|
"name": "designId",
|
|
197
|
-
"schema": {
|
|
198
|
-
"type": "string"
|
|
199
|
-
},
|
|
200
202
|
"required": true,
|
|
201
|
-
"
|
|
202
|
-
|
|
203
|
+
"schema": {
|
|
204
|
+
"$ref": "#/components/schemas/DesignId"
|
|
205
|
+
}
|
|
203
206
|
}
|
|
204
207
|
],
|
|
205
208
|
"responses": {
|
|
@@ -252,12 +255,10 @@
|
|
|
252
255
|
{
|
|
253
256
|
"in": "path",
|
|
254
257
|
"name": "designId",
|
|
255
|
-
"schema": {
|
|
256
|
-
"type": "string"
|
|
257
|
-
},
|
|
258
258
|
"required": true,
|
|
259
|
-
"
|
|
260
|
-
|
|
259
|
+
"schema": {
|
|
260
|
+
"$ref": "#/components/schemas/DesignId"
|
|
261
|
+
}
|
|
261
262
|
}
|
|
262
263
|
],
|
|
263
264
|
"requestBody": {
|
|
@@ -324,16 +325,15 @@
|
|
|
324
325
|
{
|
|
325
326
|
"in": "path",
|
|
326
327
|
"name": "designId",
|
|
327
|
-
"schema": {
|
|
328
|
-
"type": "string"
|
|
329
|
-
},
|
|
330
328
|
"required": true,
|
|
331
|
-
"
|
|
332
|
-
|
|
329
|
+
"schema": {
|
|
330
|
+
"$ref": "#/components/schemas/DesignId"
|
|
331
|
+
}
|
|
333
332
|
},
|
|
334
333
|
{
|
|
335
334
|
"in": "query",
|
|
336
335
|
"name": "orgId",
|
|
336
|
+
"required": false,
|
|
337
337
|
"schema": {
|
|
338
338
|
"type": "string"
|
|
339
339
|
},
|
|
@@ -342,16 +342,10 @@
|
|
|
342
342
|
{
|
|
343
343
|
"in": "query",
|
|
344
344
|
"name": "theme",
|
|
345
|
-
"schema": {
|
|
346
|
-
"type": "string",
|
|
347
|
-
"enum": [
|
|
348
|
-
"NEW",
|
|
349
|
-
"OLD"
|
|
350
|
-
]
|
|
351
|
-
},
|
|
352
345
|
"required": true,
|
|
353
|
-
"
|
|
354
|
-
|
|
346
|
+
"schema": {
|
|
347
|
+
"$ref": "#/components/schemas/Theme"
|
|
348
|
+
}
|
|
355
349
|
}
|
|
356
350
|
],
|
|
357
351
|
"responses": {
|
|
@@ -616,22 +610,18 @@
|
|
|
616
610
|
{
|
|
617
611
|
"in": "path",
|
|
618
612
|
"name": "consumerId",
|
|
619
|
-
"schema": {
|
|
620
|
-
"type": "string"
|
|
621
|
-
},
|
|
622
613
|
"required": true,
|
|
623
|
-
"
|
|
624
|
-
|
|
614
|
+
"schema": {
|
|
615
|
+
"$ref": "#/components/schemas/DesignId"
|
|
616
|
+
}
|
|
625
617
|
},
|
|
626
618
|
{
|
|
627
619
|
"in": "path",
|
|
628
620
|
"name": "application",
|
|
629
|
-
"schema": {
|
|
630
|
-
"type": "string"
|
|
631
|
-
},
|
|
632
621
|
"required": true,
|
|
633
|
-
"
|
|
634
|
-
|
|
622
|
+
"schema": {
|
|
623
|
+
"$ref": "#/components/schemas/Application"
|
|
624
|
+
}
|
|
635
625
|
}
|
|
636
626
|
],
|
|
637
627
|
"responses": {
|
|
@@ -693,12 +683,10 @@
|
|
|
693
683
|
{
|
|
694
684
|
"in": "path",
|
|
695
685
|
"name": "designId",
|
|
696
|
-
"schema": {
|
|
697
|
-
"type": "string"
|
|
698
|
-
},
|
|
699
686
|
"required": true,
|
|
700
|
-
"
|
|
701
|
-
|
|
687
|
+
"schema": {
|
|
688
|
+
"$ref": "#/components/schemas/DesignId"
|
|
689
|
+
}
|
|
702
690
|
},
|
|
703
691
|
{
|
|
704
692
|
"in": "path",
|
|
@@ -774,12 +762,10 @@
|
|
|
774
762
|
{
|
|
775
763
|
"in": "path",
|
|
776
764
|
"name": "designId",
|
|
777
|
-
"schema": {
|
|
778
|
-
"type": "string"
|
|
779
|
-
},
|
|
780
765
|
"required": true,
|
|
781
|
-
"
|
|
782
|
-
|
|
766
|
+
"schema": {
|
|
767
|
+
"$ref": "#/components/schemas/DesignId"
|
|
768
|
+
}
|
|
783
769
|
},
|
|
784
770
|
{
|
|
785
771
|
"in": "path",
|
|
@@ -798,7 +784,7 @@
|
|
|
798
784
|
"content": {
|
|
799
785
|
"application/json": {
|
|
800
786
|
"schema": {
|
|
801
|
-
"$ref": "#/components/schemas/
|
|
787
|
+
"$ref": "#/components/schemas/RemoveConsumerReq"
|
|
802
788
|
}
|
|
803
789
|
}
|
|
804
790
|
}
|
|
@@ -1047,7 +1033,7 @@
|
|
|
1047
1033
|
"type": "object",
|
|
1048
1034
|
"properties": {
|
|
1049
1035
|
"consumer_id": {
|
|
1050
|
-
"
|
|
1036
|
+
"$ref": "#/components/schemas/DesignId"
|
|
1051
1037
|
},
|
|
1052
1038
|
"consumer_name": {
|
|
1053
1039
|
"type": "string"
|
|
@@ -1061,6 +1047,21 @@
|
|
|
1061
1047
|
"consumer_name"
|
|
1062
1048
|
]
|
|
1063
1049
|
},
|
|
1050
|
+
"RemoveConsumerReq": {
|
|
1051
|
+
"type": "object",
|
|
1052
|
+
"properties": {
|
|
1053
|
+
"consumer_id": {
|
|
1054
|
+
"$ref": "#/components/schemas/DesignId"
|
|
1055
|
+
},
|
|
1056
|
+
"should_delete": {
|
|
1057
|
+
"type": "string",
|
|
1058
|
+
"deprecated": true
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"required": [
|
|
1062
|
+
"consumer_id"
|
|
1063
|
+
]
|
|
1064
|
+
},
|
|
1064
1065
|
"DesignItem": {
|
|
1065
1066
|
"type": "object",
|
|
1066
1067
|
"properties": {
|
|
@@ -1122,6 +1123,13 @@
|
|
|
1122
1123
|
},
|
|
1123
1124
|
"is_default": {
|
|
1124
1125
|
"type": "boolean"
|
|
1126
|
+
},
|
|
1127
|
+
"_manifest": {
|
|
1128
|
+
"type": "array",
|
|
1129
|
+
"description": "The manifest IDs associated with this design",
|
|
1130
|
+
"items": {
|
|
1131
|
+
"type": "string"
|
|
1132
|
+
}
|
|
1125
1133
|
}
|
|
1126
1134
|
},
|
|
1127
1135
|
"required": [
|
|
@@ -1386,6 +1394,9 @@
|
|
|
1386
1394
|
"properties": {
|
|
1387
1395
|
"message": {
|
|
1388
1396
|
"type": "string"
|
|
1397
|
+
},
|
|
1398
|
+
"error": {
|
|
1399
|
+
"type": "object"
|
|
1389
1400
|
}
|
|
1390
1401
|
}
|
|
1391
1402
|
},
|
|
@@ -1417,6 +1428,41 @@
|
|
|
1417
1428
|
"s3_object_key",
|
|
1418
1429
|
"url"
|
|
1419
1430
|
]
|
|
1431
|
+
},
|
|
1432
|
+
"DesignId": {
|
|
1433
|
+
"type": "string",
|
|
1434
|
+
"minLength": 36,
|
|
1435
|
+
"maxLength": 36,
|
|
1436
|
+
"description": "Id of the design",
|
|
1437
|
+
"example": "4a062990-a6a3-11eb-9828-4f3da7d4935a"
|
|
1438
|
+
},
|
|
1439
|
+
"Theme": {
|
|
1440
|
+
"type": "string",
|
|
1441
|
+
"enum": [
|
|
1442
|
+
"NEW",
|
|
1443
|
+
"OLD"
|
|
1444
|
+
],
|
|
1445
|
+
"description": "Type of theme to be parsed and returned",
|
|
1446
|
+
"example": "NEW"
|
|
1447
|
+
},
|
|
1448
|
+
"Application": {
|
|
1449
|
+
"type": "string",
|
|
1450
|
+
"description": "Type of application that uses the design",
|
|
1451
|
+
"example": "journey"
|
|
1452
|
+
},
|
|
1453
|
+
"DesignParameters": {
|
|
1454
|
+
"type": "object",
|
|
1455
|
+
"properties": {
|
|
1456
|
+
"designId": {
|
|
1457
|
+
"$ref": "#/components/schemas/DesignId"
|
|
1458
|
+
},
|
|
1459
|
+
"theme": {
|
|
1460
|
+
"$ref": "#/components/schemas/Theme"
|
|
1461
|
+
},
|
|
1462
|
+
"application": {
|
|
1463
|
+
"$ref": "#/components/schemas/Application"
|
|
1464
|
+
}
|
|
1465
|
+
}
|
|
1420
1466
|
}
|
|
1421
1467
|
}
|
|
1422
1468
|
}
|
|
@@ -1620,6 +1620,35 @@
|
|
|
1620
1620
|
"$ref": "#/components/responses/NotFound"
|
|
1621
1621
|
}
|
|
1622
1622
|
}
|
|
1623
|
+
},
|
|
1624
|
+
"get": {
|
|
1625
|
+
"operationId": "getDomains",
|
|
1626
|
+
"summary": "getDomains",
|
|
1627
|
+
"description": "Retrieves all custom email domains for the organization.\n",
|
|
1628
|
+
"tags": [
|
|
1629
|
+
"Domains"
|
|
1630
|
+
],
|
|
1631
|
+
"responses": {
|
|
1632
|
+
"200": {
|
|
1633
|
+
"description": "Successfully retrieved domains.",
|
|
1634
|
+
"content": {
|
|
1635
|
+
"application/json": {
|
|
1636
|
+
"schema": {
|
|
1637
|
+
"type": "array",
|
|
1638
|
+
"items": {
|
|
1639
|
+
"type": "string"
|
|
1640
|
+
}
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
},
|
|
1645
|
+
"403": {
|
|
1646
|
+
"$ref": "#/components/responses/Forbidden"
|
|
1647
|
+
},
|
|
1648
|
+
"404": {
|
|
1649
|
+
"$ref": "#/components/responses/NotFound"
|
|
1650
|
+
}
|
|
1651
|
+
}
|
|
1623
1652
|
}
|
|
1624
1653
|
},
|
|
1625
1654
|
"/v1/email-settings/domain/name-servers:verify": {
|
package/definitions/entity.json
CHANGED
|
@@ -793,7 +793,11 @@
|
|
|
793
793
|
},
|
|
794
794
|
"frozen_version": {
|
|
795
795
|
"description": "The version ID that is currently frozen, if any",
|
|
796
|
-
"
|
|
796
|
+
"allOf": [
|
|
797
|
+
{
|
|
798
|
+
"$ref": "#/components/schemas/SchemaId"
|
|
799
|
+
}
|
|
800
|
+
]
|
|
797
801
|
}
|
|
798
802
|
},
|
|
799
803
|
"required": [
|
|
@@ -828,7 +832,11 @@
|
|
|
828
832
|
"properties": {
|
|
829
833
|
"version_id": {
|
|
830
834
|
"description": "Freeze to a specific version ID. Defaults to the current version.",
|
|
831
|
-
"
|
|
835
|
+
"allOf": [
|
|
836
|
+
{
|
|
837
|
+
"$ref": "#/components/schemas/SchemaId"
|
|
838
|
+
}
|
|
839
|
+
]
|
|
832
840
|
}
|
|
833
841
|
}
|
|
834
842
|
}
|
|
@@ -1873,7 +1881,7 @@
|
|
|
1873
1881
|
"post": {
|
|
1874
1882
|
"operationId": "createActivity",
|
|
1875
1883
|
"summary": "createActivity",
|
|
1876
|
-
"description": "Create an activity that can be displayed in activity feeds.\n\n- All activites are published as events on the event bus\n- Entity mutations are always part of an activity\n",
|
|
1884
|
+
"description": "Create an activity that can be displayed in activity feeds.\n\n- All activites are published as events on the event bus\n- Entity mutations are always part of an activity\n- When more than 10 entities are passed, the first 10 are attached synchronously and the rest are processed asynchronously to avoid DynamoDB throttling\n",
|
|
1877
1885
|
"tags": [
|
|
1878
1886
|
"Activity"
|
|
1879
1887
|
],
|
|
@@ -3531,6 +3539,34 @@
|
|
|
3531
3539
|
"schema": {
|
|
3532
3540
|
"$ref": "#/components/schemas/TaxonomySearchIncludeArchivedParam"
|
|
3533
3541
|
}
|
|
3542
|
+
},
|
|
3543
|
+
{
|
|
3544
|
+
"in": "query",
|
|
3545
|
+
"name": "exclude_types",
|
|
3546
|
+
"description": "Taxonomy type(s) to exclude from the results. Useful to filter out relation labels, schema labels, and system labels.\n",
|
|
3547
|
+
"schema": {
|
|
3548
|
+
"anyOf": [
|
|
3549
|
+
{
|
|
3550
|
+
"type": "string",
|
|
3551
|
+
"enum": [
|
|
3552
|
+
"relation",
|
|
3553
|
+
"schema",
|
|
3554
|
+
"system"
|
|
3555
|
+
]
|
|
3556
|
+
},
|
|
3557
|
+
{
|
|
3558
|
+
"type": "array",
|
|
3559
|
+
"items": {
|
|
3560
|
+
"type": "string",
|
|
3561
|
+
"enum": [
|
|
3562
|
+
"relation",
|
|
3563
|
+
"schema",
|
|
3564
|
+
"system"
|
|
3565
|
+
]
|
|
3566
|
+
}
|
|
3567
|
+
}
|
|
3568
|
+
]
|
|
3569
|
+
}
|
|
3534
3570
|
}
|
|
3535
3571
|
],
|
|
3536
3572
|
"requestBody": {
|
|
@@ -3668,7 +3704,7 @@
|
|
|
3668
3704
|
"description": "ISO 8601 timestamp to filter jobs created after this time (e.g., 2023-01-01T00:00:00Z).",
|
|
3669
3705
|
"type": "string",
|
|
3670
3706
|
"format": "date-time",
|
|
3671
|
-
"example": "2023-01-01T00:00:
|
|
3707
|
+
"example": "2023-01-01T00:00:00.000Z"
|
|
3672
3708
|
}
|
|
3673
3709
|
},
|
|
3674
3710
|
{
|
|
@@ -4899,6 +4935,16 @@
|
|
|
4899
4935
|
"type": "string"
|
|
4900
4936
|
}
|
|
4901
4937
|
},
|
|
4938
|
+
"_manifest": {
|
|
4939
|
+
"type": "array",
|
|
4940
|
+
"description": "Manifest ID used to create the schema",
|
|
4941
|
+
"items": {
|
|
4942
|
+
"type": "string",
|
|
4943
|
+
"format": "uuid",
|
|
4944
|
+
"example": "123e4567-e89b-12d3-a456-426614174000"
|
|
4945
|
+
},
|
|
4946
|
+
"nullable": true
|
|
4947
|
+
},
|
|
4902
4948
|
"explicit_search_mappings": {
|
|
4903
4949
|
"$ref": "#/components/schemas/SearchMappings"
|
|
4904
4950
|
},
|
|
@@ -5823,6 +5869,11 @@
|
|
|
5823
5869
|
"public-read",
|
|
5824
5870
|
"private"
|
|
5825
5871
|
]
|
|
5872
|
+
},
|
|
5873
|
+
"file_size_bytes": {
|
|
5874
|
+
"type": "integer",
|
|
5875
|
+
"description": "The maximum file size in bytes. Used to derive file_size and file_size_unit in the UI.",
|
|
5876
|
+
"example": 5000000
|
|
5826
5877
|
}
|
|
5827
5878
|
},
|
|
5828
5879
|
"required": [
|
|
@@ -6508,6 +6559,11 @@
|
|
|
6508
6559
|
"type": "boolean",
|
|
6509
6560
|
"description": "Whether this column is required for each row",
|
|
6510
6561
|
"default": false
|
|
6562
|
+
},
|
|
6563
|
+
"bold": {
|
|
6564
|
+
"type": "boolean",
|
|
6565
|
+
"description": "When true, the row is rendered in bold (only applies in transposed mode)",
|
|
6566
|
+
"default": false
|
|
6511
6567
|
}
|
|
6512
6568
|
},
|
|
6513
6569
|
"required": [
|
|
@@ -6524,8 +6580,30 @@
|
|
|
6524
6580
|
},
|
|
6525
6581
|
"max_rows": {
|
|
6526
6582
|
"type": "integer",
|
|
6527
|
-
"description": "Maximum number of rows allowed",
|
|
6583
|
+
"description": "Maximum number of rows allowed (or maximum periods when transposed)",
|
|
6528
6584
|
"minimum": 1
|
|
6585
|
+
},
|
|
6586
|
+
"transposed": {
|
|
6587
|
+
"type": "boolean",
|
|
6588
|
+
"description": "Enable transposed layout where rows become metrics and columns become periods",
|
|
6589
|
+
"default": false
|
|
6590
|
+
},
|
|
6591
|
+
"column_header": {
|
|
6592
|
+
"type": "object",
|
|
6593
|
+
"description": "Configuration for column headers in transposed mode",
|
|
6594
|
+
"properties": {
|
|
6595
|
+
"template": {
|
|
6596
|
+
"type": "string",
|
|
6597
|
+
"description": "Header label pattern with {{i}} as index placeholder (e.g., \"Year {{i}}\")",
|
|
6598
|
+
"example": "Year {{i}}"
|
|
6599
|
+
},
|
|
6600
|
+
"start": {
|
|
6601
|
+
"type": "integer",
|
|
6602
|
+
"description": "Starting index value for the template placeholder",
|
|
6603
|
+
"default": 0,
|
|
6604
|
+
"minimum": 0
|
|
6605
|
+
}
|
|
6606
|
+
}
|
|
6529
6607
|
}
|
|
6530
6608
|
}
|
|
6531
6609
|
}
|
|
@@ -10388,5 +10466,9 @@
|
|
|
10388
10466
|
}
|
|
10389
10467
|
}
|
|
10390
10468
|
},
|
|
10391
|
-
"servers": [
|
|
10469
|
+
"servers": [
|
|
10470
|
+
{
|
|
10471
|
+
"url": "https://entity.sls.epilot.io"
|
|
10472
|
+
}
|
|
10473
|
+
]
|
|
10392
10474
|
}
|