@breign/client 1.0.90 → 1.0.92
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/apis/AgentApi.d.ts +6 -1
- package/dist/apis/AgentApi.js +17 -2
- package/dist/apis/AppApi.d.ts +14 -1
- package/dist/apis/AppApi.js +29 -0
- package/dist/apis/SkillsApi.d.ts +63 -1
- package/dist/apis/SkillsApi.js +155 -0
- package/dist/models/AppInstanceListItemUio.d.ts +38 -0
- package/dist/models/AppInstanceListItemUio.js +54 -0
- package/dist/models/SkillFileCreateRequestUio.d.ts +44 -0
- package/dist/models/SkillFileCreateRequestUio.js +56 -0
- package/dist/models/SkillFileSummaryUio.d.ts +62 -0
- package/dist/models/SkillFileSummaryUio.js +70 -0
- package/dist/models/SkillFileUio.d.ts +68 -0
- package/dist/models/SkillFileUio.js +74 -0
- package/dist/models/SkillFileUpdateRequestUio.d.ts +38 -0
- package/dist/models/SkillFileUpdateRequestUio.js +50 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/openapi.json +461 -8
- package/package.json +1 -1
package/dist/openapi.json
CHANGED
|
@@ -1459,6 +1459,43 @@
|
|
|
1459
1459
|
"schema" : {
|
|
1460
1460
|
"type" : "integer"
|
|
1461
1461
|
}
|
|
1462
|
+
}, {
|
|
1463
|
+
"description" : "Search by custom user id or user email",
|
|
1464
|
+
"in" : "query",
|
|
1465
|
+
"name" : "search",
|
|
1466
|
+
"schema" : {
|
|
1467
|
+
"type" : "string"
|
|
1468
|
+
}
|
|
1469
|
+
}, {
|
|
1470
|
+
"description" : "App id",
|
|
1471
|
+
"in" : "query",
|
|
1472
|
+
"name" : "appId",
|
|
1473
|
+
"schema" : {
|
|
1474
|
+
"type" : "string"
|
|
1475
|
+
}
|
|
1476
|
+
}, {
|
|
1477
|
+
"description" : "Instance id",
|
|
1478
|
+
"in" : "query",
|
|
1479
|
+
"name" : "instanceId",
|
|
1480
|
+
"schema" : {
|
|
1481
|
+
"type" : "string"
|
|
1482
|
+
}
|
|
1483
|
+
}, {
|
|
1484
|
+
"description" : "Filter conversations whose last message timestamp is after this value",
|
|
1485
|
+
"in" : "query",
|
|
1486
|
+
"name" : "lastMessageFrom",
|
|
1487
|
+
"schema" : {
|
|
1488
|
+
"format" : "date-time",
|
|
1489
|
+
"type" : "string"
|
|
1490
|
+
}
|
|
1491
|
+
}, {
|
|
1492
|
+
"description" : "Filter conversations whose last message timestamp is before this value",
|
|
1493
|
+
"in" : "query",
|
|
1494
|
+
"name" : "lastMessageTo",
|
|
1495
|
+
"schema" : {
|
|
1496
|
+
"format" : "date-time",
|
|
1497
|
+
"type" : "string"
|
|
1498
|
+
}
|
|
1462
1499
|
} ],
|
|
1463
1500
|
"responses" : {
|
|
1464
1501
|
"200" : {
|
|
@@ -2482,6 +2519,39 @@
|
|
|
2482
2519
|
}
|
|
2483
2520
|
},
|
|
2484
2521
|
"/apps/{appId}/instances" : {
|
|
2522
|
+
"get" : {
|
|
2523
|
+
"description" : "List persisted instances for an app (excludes ephemeral instances)",
|
|
2524
|
+
"operationId" : "getInstancesForAppId",
|
|
2525
|
+
"parameters" : [ {
|
|
2526
|
+
"description" : "ID of the app",
|
|
2527
|
+
"in" : "path",
|
|
2528
|
+
"name" : "appId",
|
|
2529
|
+
"required" : true,
|
|
2530
|
+
"schema" : {
|
|
2531
|
+
"type" : "string"
|
|
2532
|
+
}
|
|
2533
|
+
} ],
|
|
2534
|
+
"responses" : {
|
|
2535
|
+
"200" : {
|
|
2536
|
+
"content" : {
|
|
2537
|
+
"application/json" : {
|
|
2538
|
+
"schema" : {
|
|
2539
|
+
"items" : {
|
|
2540
|
+
"$ref" : "#/components/schemas/AppInstanceListItem"
|
|
2541
|
+
},
|
|
2542
|
+
"type" : "array"
|
|
2543
|
+
}
|
|
2544
|
+
}
|
|
2545
|
+
},
|
|
2546
|
+
"description" : "Instances retrieved successfully"
|
|
2547
|
+
},
|
|
2548
|
+
"404" : {
|
|
2549
|
+
"description" : "App not found"
|
|
2550
|
+
}
|
|
2551
|
+
},
|
|
2552
|
+
"summary" : "List app instances",
|
|
2553
|
+
"tags" : [ "app" ]
|
|
2554
|
+
},
|
|
2485
2555
|
"post" : {
|
|
2486
2556
|
"description" : "Create instance",
|
|
2487
2557
|
"operationId" : "createInstance",
|
|
@@ -7378,6 +7448,237 @@
|
|
|
7378
7448
|
"tags" : [ "skills" ]
|
|
7379
7449
|
}
|
|
7380
7450
|
},
|
|
7451
|
+
"/skills/{skillId}/files" : {
|
|
7452
|
+
"get" : {
|
|
7453
|
+
"description" : "Returns all files attached to the skill — all metadata fields, no content",
|
|
7454
|
+
"operationId" : "listSkillFiles",
|
|
7455
|
+
"parameters" : [ {
|
|
7456
|
+
"description" : "Skill identifier",
|
|
7457
|
+
"in" : "path",
|
|
7458
|
+
"name" : "skillId",
|
|
7459
|
+
"required" : true,
|
|
7460
|
+
"schema" : {
|
|
7461
|
+
"format" : "uuid",
|
|
7462
|
+
"type" : "string"
|
|
7463
|
+
}
|
|
7464
|
+
} ],
|
|
7465
|
+
"responses" : {
|
|
7466
|
+
"200" : {
|
|
7467
|
+
"content" : {
|
|
7468
|
+
"application/json" : {
|
|
7469
|
+
"schema" : {
|
|
7470
|
+
"items" : {
|
|
7471
|
+
"$ref" : "#/components/schemas/SkillFileSummary"
|
|
7472
|
+
},
|
|
7473
|
+
"type" : "array"
|
|
7474
|
+
}
|
|
7475
|
+
}
|
|
7476
|
+
},
|
|
7477
|
+
"description" : "List of skill files without content"
|
|
7478
|
+
},
|
|
7479
|
+
"401" : {
|
|
7480
|
+
"description" : "Unauthorized"
|
|
7481
|
+
},
|
|
7482
|
+
"403" : {
|
|
7483
|
+
"description" : "Forbidden"
|
|
7484
|
+
},
|
|
7485
|
+
"404" : {
|
|
7486
|
+
"description" : "SKILL_NOT_FOUND"
|
|
7487
|
+
}
|
|
7488
|
+
},
|
|
7489
|
+
"summary" : "List skill files",
|
|
7490
|
+
"tags" : [ "skills" ]
|
|
7491
|
+
},
|
|
7492
|
+
"post" : {
|
|
7493
|
+
"operationId" : "createSkillFile",
|
|
7494
|
+
"parameters" : [ {
|
|
7495
|
+
"description" : "Skill identifier",
|
|
7496
|
+
"in" : "path",
|
|
7497
|
+
"name" : "skillId",
|
|
7498
|
+
"required" : true,
|
|
7499
|
+
"schema" : {
|
|
7500
|
+
"format" : "uuid",
|
|
7501
|
+
"type" : "string"
|
|
7502
|
+
}
|
|
7503
|
+
} ],
|
|
7504
|
+
"requestBody" : {
|
|
7505
|
+
"content" : {
|
|
7506
|
+
"application/json" : {
|
|
7507
|
+
"schema" : {
|
|
7508
|
+
"$ref" : "#/components/schemas/SkillFileCreateRequest"
|
|
7509
|
+
}
|
|
7510
|
+
}
|
|
7511
|
+
},
|
|
7512
|
+
"required" : true
|
|
7513
|
+
},
|
|
7514
|
+
"responses" : {
|
|
7515
|
+
"201" : {
|
|
7516
|
+
"content" : {
|
|
7517
|
+
"application/json" : {
|
|
7518
|
+
"schema" : {
|
|
7519
|
+
"$ref" : "#/components/schemas/SkillFile"
|
|
7520
|
+
}
|
|
7521
|
+
}
|
|
7522
|
+
},
|
|
7523
|
+
"description" : "File created"
|
|
7524
|
+
},
|
|
7525
|
+
"401" : {
|
|
7526
|
+
"description" : "Unauthorized"
|
|
7527
|
+
},
|
|
7528
|
+
"403" : {
|
|
7529
|
+
"description" : "Forbidden"
|
|
7530
|
+
},
|
|
7531
|
+
"404" : {
|
|
7532
|
+
"description" : "SKILL_NOT_FOUND"
|
|
7533
|
+
},
|
|
7534
|
+
"422" : {
|
|
7535
|
+
"description" : "Validation error — SKILL_FILE_INVALID_FILENAME, SKILL_FILE_CONTENT_TOO_LARGE, or SKILL_FILE_LIMIT_REACHED (max 15 files per skill)\n"
|
|
7536
|
+
}
|
|
7537
|
+
},
|
|
7538
|
+
"summary" : "Create a skill file",
|
|
7539
|
+
"tags" : [ "skills" ]
|
|
7540
|
+
}
|
|
7541
|
+
},
|
|
7542
|
+
"/skills/{skillId}/files/{fileId}" : {
|
|
7543
|
+
"delete" : {
|
|
7544
|
+
"operationId" : "deleteSkillFile",
|
|
7545
|
+
"parameters" : [ {
|
|
7546
|
+
"description" : "Skill identifier",
|
|
7547
|
+
"in" : "path",
|
|
7548
|
+
"name" : "skillId",
|
|
7549
|
+
"required" : true,
|
|
7550
|
+
"schema" : {
|
|
7551
|
+
"format" : "uuid",
|
|
7552
|
+
"type" : "string"
|
|
7553
|
+
}
|
|
7554
|
+
}, {
|
|
7555
|
+
"description" : "The ID of the file",
|
|
7556
|
+
"in" : "path",
|
|
7557
|
+
"name" : "fileId",
|
|
7558
|
+
"required" : true,
|
|
7559
|
+
"schema" : {
|
|
7560
|
+
"type" : "string"
|
|
7561
|
+
}
|
|
7562
|
+
} ],
|
|
7563
|
+
"responses" : {
|
|
7564
|
+
"204" : {
|
|
7565
|
+
"description" : "File deleted"
|
|
7566
|
+
},
|
|
7567
|
+
"401" : {
|
|
7568
|
+
"description" : "Unauthorized"
|
|
7569
|
+
},
|
|
7570
|
+
"403" : {
|
|
7571
|
+
"description" : "Forbidden"
|
|
7572
|
+
},
|
|
7573
|
+
"404" : {
|
|
7574
|
+
"description" : "SKILL_NOT_FOUND or SKILL_FILE_NOT_FOUND"
|
|
7575
|
+
}
|
|
7576
|
+
},
|
|
7577
|
+
"summary" : "Delete a skill file",
|
|
7578
|
+
"tags" : [ "skills" ]
|
|
7579
|
+
},
|
|
7580
|
+
"get" : {
|
|
7581
|
+
"operationId" : "getSkillFile",
|
|
7582
|
+
"parameters" : [ {
|
|
7583
|
+
"description" : "Skill identifier",
|
|
7584
|
+
"in" : "path",
|
|
7585
|
+
"name" : "skillId",
|
|
7586
|
+
"required" : true,
|
|
7587
|
+
"schema" : {
|
|
7588
|
+
"format" : "uuid",
|
|
7589
|
+
"type" : "string"
|
|
7590
|
+
}
|
|
7591
|
+
}, {
|
|
7592
|
+
"description" : "The ID of the file",
|
|
7593
|
+
"in" : "path",
|
|
7594
|
+
"name" : "fileId",
|
|
7595
|
+
"required" : true,
|
|
7596
|
+
"schema" : {
|
|
7597
|
+
"type" : "string"
|
|
7598
|
+
}
|
|
7599
|
+
} ],
|
|
7600
|
+
"responses" : {
|
|
7601
|
+
"200" : {
|
|
7602
|
+
"content" : {
|
|
7603
|
+
"application/json" : {
|
|
7604
|
+
"schema" : {
|
|
7605
|
+
"$ref" : "#/components/schemas/SkillFile"
|
|
7606
|
+
}
|
|
7607
|
+
}
|
|
7608
|
+
},
|
|
7609
|
+
"description" : "Skill file with full content"
|
|
7610
|
+
},
|
|
7611
|
+
"401" : {
|
|
7612
|
+
"description" : "Unauthorized"
|
|
7613
|
+
},
|
|
7614
|
+
"403" : {
|
|
7615
|
+
"description" : "Forbidden"
|
|
7616
|
+
},
|
|
7617
|
+
"404" : {
|
|
7618
|
+
"description" : "SKILL_NOT_FOUND or SKILL_FILE_NOT_FOUND"
|
|
7619
|
+
}
|
|
7620
|
+
},
|
|
7621
|
+
"summary" : "Get a skill file with content",
|
|
7622
|
+
"tags" : [ "skills" ]
|
|
7623
|
+
},
|
|
7624
|
+
"patch" : {
|
|
7625
|
+
"operationId" : "updateSkillFile",
|
|
7626
|
+
"parameters" : [ {
|
|
7627
|
+
"description" : "Skill identifier",
|
|
7628
|
+
"in" : "path",
|
|
7629
|
+
"name" : "skillId",
|
|
7630
|
+
"required" : true,
|
|
7631
|
+
"schema" : {
|
|
7632
|
+
"format" : "uuid",
|
|
7633
|
+
"type" : "string"
|
|
7634
|
+
}
|
|
7635
|
+
}, {
|
|
7636
|
+
"description" : "The ID of the file",
|
|
7637
|
+
"in" : "path",
|
|
7638
|
+
"name" : "fileId",
|
|
7639
|
+
"required" : true,
|
|
7640
|
+
"schema" : {
|
|
7641
|
+
"type" : "string"
|
|
7642
|
+
}
|
|
7643
|
+
} ],
|
|
7644
|
+
"requestBody" : {
|
|
7645
|
+
"content" : {
|
|
7646
|
+
"application/json" : {
|
|
7647
|
+
"schema" : {
|
|
7648
|
+
"$ref" : "#/components/schemas/SkillFileUpdateRequest"
|
|
7649
|
+
}
|
|
7650
|
+
}
|
|
7651
|
+
},
|
|
7652
|
+
"required" : true
|
|
7653
|
+
},
|
|
7654
|
+
"responses" : {
|
|
7655
|
+
"200" : {
|
|
7656
|
+
"content" : {
|
|
7657
|
+
"application/json" : {
|
|
7658
|
+
"schema" : {
|
|
7659
|
+
"$ref" : "#/components/schemas/SkillFile"
|
|
7660
|
+
}
|
|
7661
|
+
}
|
|
7662
|
+
},
|
|
7663
|
+
"description" : "File updated"
|
|
7664
|
+
},
|
|
7665
|
+
"401" : {
|
|
7666
|
+
"description" : "Unauthorized"
|
|
7667
|
+
},
|
|
7668
|
+
"403" : {
|
|
7669
|
+
"description" : "Forbidden"
|
|
7670
|
+
},
|
|
7671
|
+
"404" : {
|
|
7672
|
+
"description" : "SKILL_NOT_FOUND or SKILL_FILE_NOT_FOUND"
|
|
7673
|
+
},
|
|
7674
|
+
"422" : {
|
|
7675
|
+
"description" : "Validation error — SKILL_FILE_DESC_TOO_SHORT, SKILL_FILE_DESC_TOO_LONG, SKILL_FILE_INVALID_FILENAME or SKILL_FILE_CONTENT_TOO_LARGE"
|
|
7676
|
+
}
|
|
7677
|
+
},
|
|
7678
|
+
"summary" : "Update a skill file",
|
|
7679
|
+
"tags" : [ "skills" ]
|
|
7680
|
+
}
|
|
7681
|
+
},
|
|
7381
7682
|
"/agents/{agentId}/skills" : {
|
|
7382
7683
|
"get" : {
|
|
7383
7684
|
"operationId" : "getAgentSkills",
|
|
@@ -8138,6 +8439,48 @@
|
|
|
8138
8439
|
"type" : "integer"
|
|
8139
8440
|
}
|
|
8140
8441
|
},
|
|
8442
|
+
"search" : {
|
|
8443
|
+
"description" : "Search by custom user id or user email",
|
|
8444
|
+
"in" : "query",
|
|
8445
|
+
"name" : "search",
|
|
8446
|
+
"schema" : {
|
|
8447
|
+
"type" : "string"
|
|
8448
|
+
}
|
|
8449
|
+
},
|
|
8450
|
+
"appId" : {
|
|
8451
|
+
"description" : "App id",
|
|
8452
|
+
"in" : "query",
|
|
8453
|
+
"name" : "appId",
|
|
8454
|
+
"schema" : {
|
|
8455
|
+
"type" : "string"
|
|
8456
|
+
}
|
|
8457
|
+
},
|
|
8458
|
+
"instanceId" : {
|
|
8459
|
+
"description" : "Instance id",
|
|
8460
|
+
"in" : "query",
|
|
8461
|
+
"name" : "instanceId",
|
|
8462
|
+
"schema" : {
|
|
8463
|
+
"type" : "string"
|
|
8464
|
+
}
|
|
8465
|
+
},
|
|
8466
|
+
"lastMessageFrom" : {
|
|
8467
|
+
"description" : "Filter conversations whose last message timestamp is after this value",
|
|
8468
|
+
"in" : "query",
|
|
8469
|
+
"name" : "lastMessageFrom",
|
|
8470
|
+
"schema" : {
|
|
8471
|
+
"format" : "date-time",
|
|
8472
|
+
"type" : "string"
|
|
8473
|
+
}
|
|
8474
|
+
},
|
|
8475
|
+
"lastMessageTo" : {
|
|
8476
|
+
"description" : "Filter conversations whose last message timestamp is before this value",
|
|
8477
|
+
"in" : "query",
|
|
8478
|
+
"name" : "lastMessageTo",
|
|
8479
|
+
"schema" : {
|
|
8480
|
+
"format" : "date-time",
|
|
8481
|
+
"type" : "string"
|
|
8482
|
+
}
|
|
8483
|
+
},
|
|
8141
8484
|
"ephemeral" : {
|
|
8142
8485
|
"description" : "If true, the resource will not appear in history and will be deleted after a certain time.",
|
|
8143
8486
|
"in" : "query",
|
|
@@ -8156,14 +8499,6 @@
|
|
|
8156
8499
|
"type" : "string"
|
|
8157
8500
|
}
|
|
8158
8501
|
},
|
|
8159
|
-
"instanceId" : {
|
|
8160
|
-
"description" : "Instance id",
|
|
8161
|
-
"in" : "query",
|
|
8162
|
-
"name" : "instanceId",
|
|
8163
|
-
"schema" : {
|
|
8164
|
-
"type" : "string"
|
|
8165
|
-
}
|
|
8166
|
-
},
|
|
8167
8502
|
"appIdPath" : {
|
|
8168
8503
|
"description" : "ID of the app",
|
|
8169
8504
|
"in" : "path",
|
|
@@ -10462,6 +10797,18 @@
|
|
|
10462
10797
|
"required" : [ "audio" ],
|
|
10463
10798
|
"type" : "object"
|
|
10464
10799
|
},
|
|
10800
|
+
"AppInstanceListItem" : {
|
|
10801
|
+
"properties" : {
|
|
10802
|
+
"id" : {
|
|
10803
|
+
"type" : "string"
|
|
10804
|
+
},
|
|
10805
|
+
"name" : {
|
|
10806
|
+
"type" : "string"
|
|
10807
|
+
}
|
|
10808
|
+
},
|
|
10809
|
+
"required" : [ "id", "name" ],
|
|
10810
|
+
"type" : "object"
|
|
10811
|
+
},
|
|
10465
10812
|
"AppInstanceCreateRequest" : {
|
|
10466
10813
|
"oneOf" : [ {
|
|
10467
10814
|
"$ref" : "#/components/schemas/AppInstanceCreateRequest_oneOf"
|
|
@@ -12026,13 +12373,18 @@
|
|
|
12026
12373
|
"type" : "string"
|
|
12027
12374
|
},
|
|
12028
12375
|
"slug" : {
|
|
12376
|
+
"maxLength" : 64,
|
|
12377
|
+
"minLength" : 1,
|
|
12029
12378
|
"pattern" : "^[a-z0-9]+(?:-[a-z0-9]+)*$",
|
|
12030
12379
|
"type" : "string"
|
|
12031
12380
|
},
|
|
12032
12381
|
"description" : {
|
|
12382
|
+
"maxLength" : 1024,
|
|
12383
|
+
"minLength" : 1,
|
|
12033
12384
|
"type" : "string"
|
|
12034
12385
|
},
|
|
12035
12386
|
"content" : {
|
|
12387
|
+
"minLength" : 1,
|
|
12036
12388
|
"type" : "string"
|
|
12037
12389
|
}
|
|
12038
12390
|
},
|
|
@@ -12041,6 +12393,7 @@
|
|
|
12041
12393
|
},
|
|
12042
12394
|
"SkillUpdateRequest" : {
|
|
12043
12395
|
"additionalProperties" : false,
|
|
12396
|
+
"minProperties" : 1,
|
|
12044
12397
|
"properties" : {
|
|
12045
12398
|
"name" : {
|
|
12046
12399
|
"maxLength" : 255,
|
|
@@ -12048,9 +12401,12 @@
|
|
|
12048
12401
|
"type" : "string"
|
|
12049
12402
|
},
|
|
12050
12403
|
"description" : {
|
|
12404
|
+
"maxLength" : 1024,
|
|
12405
|
+
"minLength" : 1,
|
|
12051
12406
|
"type" : "string"
|
|
12052
12407
|
},
|
|
12053
12408
|
"content" : {
|
|
12409
|
+
"minLength" : 1,
|
|
12054
12410
|
"type" : "string"
|
|
12055
12411
|
},
|
|
12056
12412
|
"isActive" : {
|
|
@@ -12059,6 +12415,103 @@
|
|
|
12059
12415
|
},
|
|
12060
12416
|
"type" : "object"
|
|
12061
12417
|
},
|
|
12418
|
+
"SkillFileSummary" : {
|
|
12419
|
+
"properties" : {
|
|
12420
|
+
"id" : {
|
|
12421
|
+
"format" : "uuid",
|
|
12422
|
+
"type" : "string"
|
|
12423
|
+
},
|
|
12424
|
+
"skillId" : {
|
|
12425
|
+
"format" : "uuid",
|
|
12426
|
+
"type" : "string"
|
|
12427
|
+
},
|
|
12428
|
+
"filename" : {
|
|
12429
|
+
"type" : "string"
|
|
12430
|
+
},
|
|
12431
|
+
"mimeType" : {
|
|
12432
|
+
"type" : "string"
|
|
12433
|
+
},
|
|
12434
|
+
"createdAt" : {
|
|
12435
|
+
"format" : "date-time",
|
|
12436
|
+
"type" : "string"
|
|
12437
|
+
},
|
|
12438
|
+
"updatedAt" : {
|
|
12439
|
+
"format" : "date-time",
|
|
12440
|
+
"type" : "string"
|
|
12441
|
+
}
|
|
12442
|
+
},
|
|
12443
|
+
"required" : [ "createdAt", "filename", "id", "mimeType", "skillId", "updatedAt" ],
|
|
12444
|
+
"type" : "object"
|
|
12445
|
+
},
|
|
12446
|
+
"SkillFileCreateRequest" : {
|
|
12447
|
+
"additionalProperties" : false,
|
|
12448
|
+
"properties" : {
|
|
12449
|
+
"filename" : {
|
|
12450
|
+
"maxLength" : 255,
|
|
12451
|
+
"minLength" : 1,
|
|
12452
|
+
"pattern" : "^[a-zA-Z0-9._\\-/]+$",
|
|
12453
|
+
"type" : "string"
|
|
12454
|
+
},
|
|
12455
|
+
"content" : {
|
|
12456
|
+
"minLength" : 1,
|
|
12457
|
+
"type" : "string"
|
|
12458
|
+
},
|
|
12459
|
+
"mimeType" : {
|
|
12460
|
+
"type" : "string"
|
|
12461
|
+
}
|
|
12462
|
+
},
|
|
12463
|
+
"required" : [ "content", "filename" ],
|
|
12464
|
+
"type" : "object"
|
|
12465
|
+
},
|
|
12466
|
+
"SkillFile" : {
|
|
12467
|
+
"properties" : {
|
|
12468
|
+
"id" : {
|
|
12469
|
+
"format" : "uuid",
|
|
12470
|
+
"type" : "string"
|
|
12471
|
+
},
|
|
12472
|
+
"skillId" : {
|
|
12473
|
+
"format" : "uuid",
|
|
12474
|
+
"type" : "string"
|
|
12475
|
+
},
|
|
12476
|
+
"filename" : {
|
|
12477
|
+
"maxLength" : 255,
|
|
12478
|
+
"type" : "string"
|
|
12479
|
+
},
|
|
12480
|
+
"mimeType" : {
|
|
12481
|
+
"maxLength" : 100,
|
|
12482
|
+
"type" : "string"
|
|
12483
|
+
},
|
|
12484
|
+
"content" : {
|
|
12485
|
+
"type" : "string"
|
|
12486
|
+
},
|
|
12487
|
+
"createdAt" : {
|
|
12488
|
+
"format" : "date-time",
|
|
12489
|
+
"type" : "string"
|
|
12490
|
+
},
|
|
12491
|
+
"updatedAt" : {
|
|
12492
|
+
"format" : "date-time",
|
|
12493
|
+
"type" : "string"
|
|
12494
|
+
}
|
|
12495
|
+
},
|
|
12496
|
+
"required" : [ "content", "createdAt", "filename", "id", "mimeType", "skillId", "updatedAt" ],
|
|
12497
|
+
"type" : "object"
|
|
12498
|
+
},
|
|
12499
|
+
"SkillFileUpdateRequest" : {
|
|
12500
|
+
"additionalProperties" : false,
|
|
12501
|
+
"minProperties" : 1,
|
|
12502
|
+
"properties" : {
|
|
12503
|
+
"filename" : {
|
|
12504
|
+
"maxLength" : 255,
|
|
12505
|
+
"minLength" : 1,
|
|
12506
|
+
"type" : "string"
|
|
12507
|
+
},
|
|
12508
|
+
"content" : {
|
|
12509
|
+
"minLength" : 1,
|
|
12510
|
+
"type" : "string"
|
|
12511
|
+
}
|
|
12512
|
+
},
|
|
12513
|
+
"type" : "object"
|
|
12514
|
+
},
|
|
12062
12515
|
"SkillAssignRequest" : {
|
|
12063
12516
|
"additionalProperties" : false,
|
|
12064
12517
|
"properties" : {
|