@opensteer/protocol 0.7.0 → 0.7.1
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.cjs +2 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -10
- package/dist/index.d.ts +33 -10
- package/dist/index.js +3 -21
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1141,12 +1141,6 @@ var opensteerRegistryProvenanceSchema = objectSchema(
|
|
|
1141
1141
|
required: ["source"]
|
|
1142
1142
|
}
|
|
1143
1143
|
);
|
|
1144
|
-
var opensteerRequestPlanLifecycleSchema = enumSchema(
|
|
1145
|
-
["draft", "active", "deprecated", "retired"],
|
|
1146
|
-
{
|
|
1147
|
-
title: "OpensteerRequestPlanLifecycle"
|
|
1148
|
-
}
|
|
1149
|
-
);
|
|
1150
1144
|
var opensteerRequestPlanFreshnessSchema = objectSchema(
|
|
1151
1145
|
{
|
|
1152
1146
|
lastValidatedAt: integerSchema({ minimum: 0 }),
|
|
@@ -1169,23 +1163,12 @@ var opensteerRequestPlanRecordSchema = objectSchema(
|
|
|
1169
1163
|
uniqueItems: true
|
|
1170
1164
|
}),
|
|
1171
1165
|
provenance: opensteerRegistryProvenanceSchema,
|
|
1172
|
-
lifecycle: opensteerRequestPlanLifecycleSchema,
|
|
1173
1166
|
freshness: opensteerRequestPlanFreshnessSchema,
|
|
1174
1167
|
payload: opensteerRequestPlanPayloadSchema
|
|
1175
1168
|
},
|
|
1176
1169
|
{
|
|
1177
1170
|
title: "OpensteerRequestPlanRecord",
|
|
1178
|
-
required: [
|
|
1179
|
-
"id",
|
|
1180
|
-
"key",
|
|
1181
|
-
"version",
|
|
1182
|
-
"createdAt",
|
|
1183
|
-
"updatedAt",
|
|
1184
|
-
"contentHash",
|
|
1185
|
-
"tags",
|
|
1186
|
-
"lifecycle",
|
|
1187
|
-
"payload"
|
|
1188
|
-
]
|
|
1171
|
+
required: ["id", "key", "version", "createdAt", "updatedAt", "contentHash", "tags", "payload"]
|
|
1189
1172
|
}
|
|
1190
1173
|
);
|
|
1191
1174
|
var jsonValueSchema = defineSchema({
|
|
@@ -1631,7 +1614,6 @@ var opensteerWriteRequestPlanInputSchema = objectSchema(
|
|
|
1631
1614
|
uniqueItems: true
|
|
1632
1615
|
}),
|
|
1633
1616
|
provenance: opensteerRegistryProvenanceSchema,
|
|
1634
|
-
lifecycle: opensteerRequestPlanLifecycleSchema,
|
|
1635
1617
|
freshness: opensteerRequestPlanFreshnessSchema,
|
|
1636
1618
|
payload: opensteerRequestPlanPayloadSchema
|
|
1637
1619
|
},
|
|
@@ -1872,7 +1854,7 @@ var opensteerInferRequestPlanInputSchema = objectSchema(
|
|
|
1872
1854
|
recordId: stringSchema({ minLength: 1 }),
|
|
1873
1855
|
key: stringSchema({ minLength: 1 }),
|
|
1874
1856
|
version: stringSchema({ minLength: 1 }),
|
|
1875
|
-
|
|
1857
|
+
transport: transportKindSchema
|
|
1876
1858
|
},
|
|
1877
1859
|
{
|
|
1878
1860
|
title: "OpensteerInferRequestPlanInput",
|
|
@@ -7952,7 +7934,6 @@ exports.opensteerRequestPlanAuthSchema = opensteerRequestPlanAuthSchema;
|
|
|
7952
7934
|
exports.opensteerRequestPlanBodySchema = opensteerRequestPlanBodySchema;
|
|
7953
7935
|
exports.opensteerRequestPlanEndpointSchema = opensteerRequestPlanEndpointSchema;
|
|
7954
7936
|
exports.opensteerRequestPlanFreshnessSchema = opensteerRequestPlanFreshnessSchema;
|
|
7955
|
-
exports.opensteerRequestPlanLifecycleSchema = opensteerRequestPlanLifecycleSchema;
|
|
7956
7937
|
exports.opensteerRequestPlanParameterLocationSchema = opensteerRequestPlanParameterLocationSchema;
|
|
7957
7938
|
exports.opensteerRequestPlanParameterSchema = opensteerRequestPlanParameterSchema;
|
|
7958
7939
|
exports.opensteerRequestPlanPayloadSchema = opensteerRequestPlanPayloadSchema;
|