@dynamicalsystems/idl 0.12.0 → 0.13.0

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.mjs CHANGED
@@ -974,7 +974,7 @@ const ProjectSourceSchema = closed({
974
974
  repository: NonEmptyString,
975
975
  revision: Type.String({ pattern: "^(?:[0-9a-f]{40}|[0-9a-f]{64})$" })
976
976
  });
977
- const UniquePaths = () => Type.Array(OrganizationDocumentPathSchema, { uniqueItems: true });
977
+ const UniquePaths$1 = () => Type.Array(OrganizationDocumentPathSchema, { uniqueItems: true });
978
978
  const UniqueNames = () => Type.Array(NonEmptyString, { uniqueItems: true });
979
979
  /** Frozen compatibility shape. Version one is loaded only through the explicit
980
980
  * compatibility path; it is never silently reinterpreted as version two. */
@@ -1036,12 +1036,12 @@ const OrganizationRootSchema = closed({
1036
1036
  })),
1037
1037
  vocabulary: Type.Optional(OrganizationDocumentPathSchema),
1038
1038
  admissions: Type.Optional(OrganizationDocumentPathSchema),
1039
- projects: Type.Optional(UniquePaths()),
1040
- capabilities: Type.Optional(UniquePaths()),
1039
+ projects: Type.Optional(UniquePaths$1()),
1040
+ capabilities: Type.Optional(UniquePaths$1()),
1041
1041
  instructions: Type.Optional(Type.Array(OrganizationInstructionSchema)),
1042
- documents: Type.Optional(UniquePaths()),
1042
+ documents: Type.Optional(UniquePaths$1()),
1043
1043
  archive: Type.Optional(OrganizationDocumentPathSchema),
1044
- releases: Type.Optional(UniquePaths()),
1044
+ releases: Type.Optional(UniquePaths$1()),
1045
1045
  deployment: Type.Optional(OrganizationDocumentPathSchema),
1046
1046
  source: Type.Optional(OrganizationSourceLocationSchema)
1047
1047
  });
@@ -1063,7 +1063,7 @@ const WorkspaceProfileSchema = closed({
1063
1063
  Type.Literal("curated")
1064
1064
  ]), { uniqueItems: true }),
1065
1065
  handling: closed({ required: Type.Boolean() }),
1066
- readinessChecks: UniquePaths()
1066
+ readinessChecks: UniquePaths$1()
1067
1067
  });
1068
1068
  const ProjectMembershipSchema = closed({
1069
1069
  schemaVersion: Type.Literal(1),
@@ -1140,6 +1140,888 @@ const organizationSourceV2 = {
1140
1140
  }
1141
1141
  };
1142
1142
  //#endregion
1143
+ //#region src/extension/release.v1.ts
1144
+ const EXTENSION_RELEASE_PROFILE = "dsg.extension.release/1";
1145
+ const EXTENSION_RELEASE_CANONICALIZATION = "RFC8785-JCS-UTF8";
1146
+ const IdentifierSchema$1 = Type.String({ pattern: "^[a-z][a-z0-9-]*(?:[.-][a-z0-9]+)*$" });
1147
+ const IdentifierSet$1 = () => Type.Array(IdentifierSchema$1, { uniqueItems: true });
1148
+ const RequiredStrings$1 = () => Type.Array(NonEmptyString, {
1149
+ minItems: 1,
1150
+ uniqueItems: true
1151
+ });
1152
+ const ExtensionReleaseReferenceSchema = Reference;
1153
+ const ExtensionComponentKindSchema = Type.Union([
1154
+ Type.Literal("workflow"),
1155
+ Type.Literal("example"),
1156
+ Type.Literal("contract"),
1157
+ Type.Literal("job-class"),
1158
+ Type.Literal("workload-artifact"),
1159
+ Type.Literal("event-catalog"),
1160
+ Type.Literal("connector"),
1161
+ Type.Literal("module"),
1162
+ Type.Literal("check"),
1163
+ Type.Literal("vocabulary"),
1164
+ Type.Literal("assurance"),
1165
+ Type.Literal("documentation")
1166
+ ]);
1167
+ const ExtensionComponentReferenceSchema = Reference;
1168
+ const ComponentProperties = {
1169
+ id: IdentifierSchema$1,
1170
+ reference: ExtensionComponentReferenceSchema,
1171
+ mediaType: NonEmptyString,
1172
+ required: Type.Boolean(),
1173
+ dependsOn: IdentifierSet$1()
1174
+ };
1175
+ const ExtensionComponentSchema = closed({
1176
+ ...ComponentProperties,
1177
+ kind: ExtensionComponentKindSchema
1178
+ });
1179
+ const ComputeComponentKindSchema = Type.Union([
1180
+ Type.Literal("workflow"),
1181
+ Type.Literal("example"),
1182
+ Type.Literal("contract"),
1183
+ Type.Literal("job-class"),
1184
+ Type.Literal("workload-artifact"),
1185
+ Type.Literal("event-catalog"),
1186
+ Type.Literal("connector"),
1187
+ Type.Literal("module"),
1188
+ Type.Literal("check"),
1189
+ Type.Literal("vocabulary"),
1190
+ Type.Literal("assurance"),
1191
+ Type.Literal("documentation")
1192
+ ]);
1193
+ const ComputeComponentSchema = closed({
1194
+ ...ComponentProperties,
1195
+ kind: ComputeComponentKindSchema
1196
+ });
1197
+ const NonComputeComponentKindSchema = Type.Union([
1198
+ Type.Literal("workflow"),
1199
+ Type.Literal("example"),
1200
+ Type.Literal("contract"),
1201
+ Type.Literal("event-catalog"),
1202
+ Type.Literal("connector"),
1203
+ Type.Literal("module"),
1204
+ Type.Literal("check"),
1205
+ Type.Literal("vocabulary"),
1206
+ Type.Literal("assurance"),
1207
+ Type.Literal("documentation")
1208
+ ]);
1209
+ const NonComputeComponentSchema = closed({
1210
+ ...ComponentProperties,
1211
+ kind: NonComputeComponentKindSchema
1212
+ });
1213
+ const ExtensionDependencyKindSchema = Type.Union([
1214
+ Type.Literal("extension-release"),
1215
+ Type.Literal("idl-package"),
1216
+ Type.Literal("module-release"),
1217
+ Type.Literal("law-release"),
1218
+ Type.Literal("event-catalog"),
1219
+ Type.Literal("example-release"),
1220
+ Type.Literal("target-release")
1221
+ ]);
1222
+ const ExtensionDependencySchema = closed({
1223
+ id: IdentifierSchema$1,
1224
+ kind: ExtensionDependencyKindSchema,
1225
+ reference: Reference,
1226
+ required: Type.Boolean()
1227
+ });
1228
+ /** Shared requirements contain no compute-only workload obligations. */
1229
+ const ExtensionRequirementsSchema = closed({
1230
+ idlProfiles: Type.Array(NonEmptyString, { uniqueItems: true }),
1231
+ roles: Type.Array(NonEmptyString, { uniqueItems: true }),
1232
+ qualification: Type.Optional(Reference),
1233
+ handling: Type.Union([
1234
+ Type.Literal("public"),
1235
+ Type.Literal("restricted"),
1236
+ Type.Literal("confidential")
1237
+ ])
1238
+ });
1239
+ const ExtensionComputeRequirementsSchema = closed({
1240
+ idlProfiles: Type.Array(NonEmptyString, { uniqueItems: true }),
1241
+ roles: Type.Array(NonEmptyString, { uniqueItems: true }),
1242
+ qualification: Type.Optional(Reference),
1243
+ handling: Type.Union([
1244
+ Type.Literal("public"),
1245
+ Type.Literal("restricted"),
1246
+ Type.Literal("confidential")
1247
+ ]),
1248
+ supportedPlatforms: RequiredStrings$1(),
1249
+ targets: Type.Array(Reference, { uniqueItems: true }),
1250
+ isolation: Type.Union([Type.Literal("ephemeral"), Type.Literal("dedicated")]),
1251
+ retention: Type.Union([
1252
+ Type.Literal("ephemeral"),
1253
+ Type.Literal("bounded"),
1254
+ Type.Literal("durable")
1255
+ ]),
1256
+ completion: Reference,
1257
+ teardown: Reference,
1258
+ evidence: Reference,
1259
+ replay: Reference
1260
+ });
1261
+ const ExtensionBoundsSchema = closed({
1262
+ maxDurationSeconds: SafeInt,
1263
+ maxParallelism: SafeInt,
1264
+ maxUsdMicroUnits: SafeInt
1265
+ });
1266
+ const ReleaseIdentity = {
1267
+ profile: Type.Literal(EXTENSION_RELEASE_PROFILE),
1268
+ schemaVersion: Type.Literal(1),
1269
+ kind: Type.Literal("extension-release"),
1270
+ publisher: Orn,
1271
+ name: IdentifierSchema$1,
1272
+ version: Type.String({ pattern: "^(?:0|[1-9][0-9]*)\\.[0-9]+\\.[0-9]+$" }),
1273
+ /** Derived from publisher, namespace, name, and version; never from this
1274
+ * body's digest, so canonical hashing has no self-reference. */
1275
+ releaseOrn: Orn,
1276
+ namespace: NonEmptyString,
1277
+ source: closed({
1278
+ repository: NonEmptyString,
1279
+ revision: Type.String({ pattern: "^(?:[0-9a-f]{40}|[0-9a-f]{64})$" })
1280
+ }),
1281
+ build: closed({
1282
+ provenance: Reference,
1283
+ sourceDigest: Hex64
1284
+ }),
1285
+ canonicalization: Type.Literal(EXTENSION_RELEASE_CANONICALIZATION),
1286
+ dependencies: Type.Array(ExtensionDependencySchema, { uniqueItems: true })
1287
+ };
1288
+ const ComputeReleaseSchema = closed({
1289
+ ...ReleaseIdentity,
1290
+ compute: Type.Literal(true),
1291
+ components: Type.Array(ComputeComponentSchema, {
1292
+ minItems: 1,
1293
+ uniqueItems: true
1294
+ }),
1295
+ requirements: ExtensionComputeRequirementsSchema,
1296
+ bounds: ExtensionBoundsSchema
1297
+ });
1298
+ const NonComputeReleaseSchema = closed({
1299
+ ...ReleaseIdentity,
1300
+ compute: Type.Literal(false),
1301
+ components: Type.Array(NonComputeComponentSchema, {
1302
+ minItems: 1,
1303
+ uniqueItems: true
1304
+ }),
1305
+ requirements: ExtensionRequirementsSchema
1306
+ });
1307
+ const ExtensionReleaseSchema = Type.Union([ComputeReleaseSchema, NonComputeReleaseSchema]);
1308
+ /** Detached publisher envelope. `release.sha256` and `bodySha256` both pin
1309
+ * the RFC 8785 JCS UTF-8 bytes of the semantic release body. */
1310
+ const ExtensionReleaseSignatureSchema = closed({
1311
+ profile: Type.Literal(EXTENSION_RELEASE_PROFILE),
1312
+ schemaVersion: Type.Literal(1),
1313
+ kind: Type.Literal("extension-release-signature"),
1314
+ release: ExtensionReleaseReferenceSchema,
1315
+ publisher: Orn,
1316
+ publicKey: Hex64,
1317
+ bodySha256: Hex64,
1318
+ canonicalization: Type.Literal(EXTENSION_RELEASE_CANONICALIZATION),
1319
+ signature: Type.String({ pattern: "^[0-9a-f]{128}$" }),
1320
+ signedAt: UtcSecond
1321
+ });
1322
+ const extensionReleaseV1 = {
1323
+ literal: EXTENSION_RELEASE_PROFILE,
1324
+ rootDocument: "release",
1325
+ documents: {
1326
+ release: ExtensionReleaseSchema,
1327
+ signature: ExtensionReleaseSignatureSchema
1328
+ }
1329
+ };
1330
+ //#endregion
1331
+ //#region src/organization/release.v1.ts
1332
+ const ORGANIZATION_RELEASE_PROFILE = "dsg.organization.release/1";
1333
+ const ORGANIZATION_RELEASE_CANONICALIZATION = "RFC8785-JCS-UTF8";
1334
+ const Identifier = Type.String({ pattern: "^[a-z][a-z0-9-]*(?:[.-][a-z0-9]+)*$" });
1335
+ const Revision = Type.String({ pattern: "^(?:[0-9a-f]{40}|[0-9a-f]{64})$" });
1336
+ const Identifiers = () => Type.Array(Identifier, { uniqueItems: true });
1337
+ const References = () => Type.Array(Reference, { uniqueItems: true });
1338
+ const Evidence = () => Type.Array(Reference, {
1339
+ minItems: 1,
1340
+ uniqueItems: true
1341
+ });
1342
+ const Header = {
1343
+ profile: Type.Literal(ORGANIZATION_RELEASE_PROFILE),
1344
+ schemaVersion: Type.Literal(1)
1345
+ };
1346
+ const CompilerContractSchema = closed({
1347
+ profile: Type.String({ pattern: "^dsg\\.[a-z0-9.-]+/[1-9][0-9]*$" }),
1348
+ version: Type.String({ pattern: "^(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)\\.(?:0|[1-9][0-9]*)$" }),
1349
+ implementation: Reference
1350
+ });
1351
+ const DependencyKindSchema = Type.Union([
1352
+ Type.Literal("extension-release"),
1353
+ Type.Literal("component"),
1354
+ Type.Literal("idl-package"),
1355
+ Type.Literal("module-release"),
1356
+ Type.Literal("law-release"),
1357
+ Type.Literal("definition"),
1358
+ Type.Literal("workload-artifact"),
1359
+ Type.Literal("event-catalog"),
1360
+ Type.Literal("example"),
1361
+ Type.Literal("project"),
1362
+ Type.Literal("target")
1363
+ ]);
1364
+ const DependencyLockEntrySchema = closed({
1365
+ id: Identifier,
1366
+ kind: DependencyKindSchema,
1367
+ reference: Reference,
1368
+ mediaType: NonEmptyString,
1369
+ selectedMemberIds: Identifiers(),
1370
+ dependsOn: Identifiers()
1371
+ });
1372
+ const DependencyLockSchema = closed({
1373
+ ...Header,
1374
+ kind: Type.Literal("dependency-lock"),
1375
+ canonicalization: Type.Literal(ORGANIZATION_RELEASE_CANONICALIZATION),
1376
+ roots: Identifiers(),
1377
+ entries: Type.Array(DependencyLockEntrySchema, { uniqueItems: true }),
1378
+ compiler: CompilerContractSchema
1379
+ });
1380
+ const OrganizationReleaseMemberKindSchema = Type.Union([
1381
+ Type.Literal("publication"),
1382
+ Type.Literal("import"),
1383
+ Type.Literal("capability-admission"),
1384
+ Type.Literal("workflow-publication"),
1385
+ Type.Literal("contract-check"),
1386
+ Type.Literal("target-readiness"),
1387
+ Type.Literal("setup-condition"),
1388
+ Type.Literal("paid-execution-readiness")
1389
+ ]);
1390
+ const OrganizationReleaseMemberSchema = closed({
1391
+ id: Identifier,
1392
+ kind: OrganizationReleaseMemberKindSchema,
1393
+ required: Type.Boolean(),
1394
+ acceptableDispositions: Type.Array(NonEmptyString, {
1395
+ minItems: 1,
1396
+ uniqueItems: true
1397
+ }),
1398
+ subject: Reference
1399
+ });
1400
+ const ComponentBindingSchema = closed({
1401
+ id: Identifier,
1402
+ kind: ExtensionComponentKindSchema,
1403
+ reference: Reference
1404
+ });
1405
+ const BuildSelectionSchema = closed({
1406
+ id: Identifier,
1407
+ selection: Reference,
1408
+ extensionRelease: Reference,
1409
+ members: Type.Array(ComponentBindingSchema, {
1410
+ minItems: 1,
1411
+ uniqueItems: true
1412
+ })
1413
+ });
1414
+ const BuildComponentSchema = closed({
1415
+ extensionRelease: Reference,
1416
+ memberId: Identifier,
1417
+ kind: ExtensionComponentKindSchema,
1418
+ reference: Reference,
1419
+ mediaType: NonEmptyString
1420
+ });
1421
+ const OrganizationBuildSchema = closed({
1422
+ ...Header,
1423
+ kind: Type.Literal("organization-build"),
1424
+ organization: NonEmptyString,
1425
+ canonicalization: Type.Literal(ORGANIZATION_RELEASE_CANONICALIZATION),
1426
+ source: closed({
1427
+ root: Reference,
1428
+ revision: Revision
1429
+ }),
1430
+ facts: closed({
1431
+ name: NonEmptyString,
1432
+ purpose: NonEmptyString,
1433
+ space: NonEmptyString
1434
+ }),
1435
+ workspaceProfile: Reference,
1436
+ projects: Type.Array(closed({
1437
+ id: Identifier,
1438
+ membership: Reference,
1439
+ revision: Revision
1440
+ }), { uniqueItems: true }),
1441
+ sourceDocuments: Type.Array(closed({
1442
+ path: NonEmptyString,
1443
+ sha256: Hex64,
1444
+ mediaType: NonEmptyString
1445
+ }), {
1446
+ minItems: 1,
1447
+ uniqueItems: true
1448
+ }),
1449
+ selections: Type.Array(BuildSelectionSchema, { uniqueItems: true }),
1450
+ components: Type.Array(BuildComponentSchema, { uniqueItems: true }),
1451
+ typedReleases: Type.Array(DependencyLockEntrySchema, { uniqueItems: true }),
1452
+ dependencyLock: Reference,
1453
+ compiler: CompilerContractSchema,
1454
+ instructions: References(),
1455
+ handling: References(),
1456
+ releaseDeclarations: References(),
1457
+ releaseMembers: Type.Array(OrganizationReleaseMemberSchema, { uniqueItems: true })
1458
+ });
1459
+ const OrganizationReleaseSchema = closed({
1460
+ ...Header,
1461
+ kind: Type.Literal("organization-release"),
1462
+ id: Identifier,
1463
+ organization: NonEmptyString,
1464
+ build: Reference,
1465
+ dependencyLock: Reference,
1466
+ selections: Identifiers(),
1467
+ members: Type.Array(OrganizationReleaseMemberSchema, {
1468
+ minItems: 1,
1469
+ uniqueItems: true
1470
+ })
1471
+ });
1472
+ const ImportCommon = {
1473
+ ...Header,
1474
+ kind: Type.Literal("import-disposition"),
1475
+ installation: Orn,
1476
+ build: Reference,
1477
+ release: Reference,
1478
+ subject: Reference,
1479
+ observedAt: UtcSecond
1480
+ };
1481
+ const ImportDispositionSchema = Type.Union([
1482
+ closed({
1483
+ ...ImportCommon,
1484
+ status: Type.Literal("pending")
1485
+ }),
1486
+ closed({
1487
+ ...ImportCommon,
1488
+ status: Type.Literal("verified"),
1489
+ disposition: Type.Union([Type.Literal("published"), Type.Literal("digest-match")]),
1490
+ evidence: Evidence()
1491
+ }),
1492
+ closed({
1493
+ ...ImportCommon,
1494
+ status: Type.Literal("staged"),
1495
+ disposition: Type.Literal("captured"),
1496
+ evidence: Evidence()
1497
+ }),
1498
+ closed({
1499
+ ...ImportCommon,
1500
+ status: Type.Literal("refused"),
1501
+ disposition: Type.Union([
1502
+ Type.Literal("digest-mismatch"),
1503
+ Type.Literal("missing"),
1504
+ Type.Literal("unsupported")
1505
+ ]),
1506
+ reason: NonEmptyString,
1507
+ evidence: Evidence()
1508
+ })
1509
+ ]);
1510
+ const ReleaseStatusSchema = Type.Union([
1511
+ Type.Literal("active"),
1512
+ Type.Literal("retired"),
1513
+ Type.Literal("revoked")
1514
+ ]);
1515
+ const ReleaseStatusObservationSchema = closed({
1516
+ ...Header,
1517
+ kind: Type.Literal("release-status-observation"),
1518
+ subject: Reference,
1519
+ registry: Reference,
1520
+ trustView: Reference,
1521
+ status: ReleaseStatusSchema,
1522
+ effectiveAt: UtcSecond,
1523
+ observedAt: UtcSecond,
1524
+ evidence: Evidence()
1525
+ });
1526
+ const ReleaseEligibilitySchema = closed({
1527
+ ...Header,
1528
+ kind: Type.Literal("release-eligibility"),
1529
+ release: Reference,
1530
+ operation: Type.Union([
1531
+ Type.Literal("resolve"),
1532
+ Type.Literal("select"),
1533
+ Type.Literal("import"),
1534
+ Type.Literal("admit"),
1535
+ Type.Literal("activate"),
1536
+ Type.Literal("execute")
1537
+ ]),
1538
+ observation: ReleaseStatusObservationSchema,
1539
+ trustView: Reference,
1540
+ activeSet: Type.Union([Reference, Type.Null()])
1541
+ });
1542
+ const ApprovedUseSchema = closed({
1543
+ use: NonEmptyString,
1544
+ binding: Reference
1545
+ });
1546
+ const AdmissionCommon = {
1547
+ ...Header,
1548
+ kind: Type.Literal("admission-record"),
1549
+ id: Identifier,
1550
+ installation: Orn,
1551
+ organization: NonEmptyString,
1552
+ build: Reference,
1553
+ release: Reference,
1554
+ selectionId: Identifier,
1555
+ extensionRelease: Reference,
1556
+ evaluatingCase: Reference,
1557
+ decision: Reference,
1558
+ authority: Reference,
1559
+ fence: Reference,
1560
+ revision: SafeInt,
1561
+ decidedAt: UtcSecond
1562
+ };
1563
+ const AdmissionRecordSchema = Type.Union([closed({
1564
+ ...AdmissionCommon,
1565
+ status: Type.Literal("admitted"),
1566
+ components: Type.Array(ComponentBindingSchema, {
1567
+ minItems: 1,
1568
+ uniqueItems: true
1569
+ }),
1570
+ approvedUses: Type.Array(ApprovedUseSchema, {
1571
+ minItems: 1,
1572
+ uniqueItems: true
1573
+ }),
1574
+ bindings: Evidence(),
1575
+ evidence: Evidence()
1576
+ }), closed({
1577
+ ...AdmissionCommon,
1578
+ status: Type.Literal("refused"),
1579
+ components: Type.Array(ComponentBindingSchema, { uniqueItems: true }),
1580
+ reason: NonEmptyString,
1581
+ evidence: Evidence()
1582
+ })]);
1583
+ const AdmissionObservationCommon = {
1584
+ ...Header,
1585
+ kind: Type.Literal("admission-status-observation"),
1586
+ admission: Reference,
1587
+ decision: Reference,
1588
+ evidence: Evidence(),
1589
+ observedAt: UtcSecond
1590
+ };
1591
+ const AdmissionStatusObservationSchema = Type.Union([
1592
+ closed({
1593
+ ...AdmissionObservationCommon,
1594
+ status: Type.Literal("suspended"),
1595
+ reason: NonEmptyString
1596
+ }),
1597
+ closed({
1598
+ ...AdmissionObservationCommon,
1599
+ status: Type.Literal("superseded"),
1600
+ replacement: Reference
1601
+ }),
1602
+ closed({
1603
+ ...AdmissionObservationCommon,
1604
+ status: Type.Literal("revoked"),
1605
+ governedRevocation: Reference,
1606
+ trustView: Reference,
1607
+ reason: NonEmptyString
1608
+ })
1609
+ ]);
1610
+ const MemberObservationCommon = {
1611
+ ...Header,
1612
+ kind: Type.Literal("member-observation"),
1613
+ installation: Orn,
1614
+ build: Reference,
1615
+ release: Reference,
1616
+ memberId: Identifier,
1617
+ memberKind: OrganizationReleaseMemberKindSchema,
1618
+ subject: Reference,
1619
+ evidence: Evidence(),
1620
+ observedAt: UtcSecond
1621
+ };
1622
+ const MemberObservationSchema = Type.Union([closed({
1623
+ ...MemberObservationCommon,
1624
+ disposition: Type.Union([Type.Literal("ready"), Type.Literal("verified")])
1625
+ }), closed({
1626
+ ...MemberObservationCommon,
1627
+ disposition: Type.Union([
1628
+ Type.Literal("refused"),
1629
+ Type.Literal("suspended"),
1630
+ Type.Literal("revoked")
1631
+ ]),
1632
+ reason: NonEmptyString
1633
+ })]);
1634
+ const ActiveMemberSchema = closed({
1635
+ selectionId: Identifier,
1636
+ memberId: Identifier,
1637
+ extensionRelease: Reference,
1638
+ components: Type.Array(ComponentBindingSchema, {
1639
+ minItems: 1,
1640
+ uniqueItems: true
1641
+ }),
1642
+ admission: Reference
1643
+ });
1644
+ const ActiveSetSchema = closed({
1645
+ ...Header,
1646
+ kind: Type.Literal("active-set"),
1647
+ installation: Orn,
1648
+ organization: NonEmptyString,
1649
+ release: Reference,
1650
+ build: Reference,
1651
+ predecessor: Type.Union([Reference, Type.Null()]),
1652
+ members: Type.Array(ActiveMemberSchema, { uniqueItems: true }),
1653
+ memberObservations: Evidence(),
1654
+ policies: References(),
1655
+ configuration: References(),
1656
+ activatingCase: Reference,
1657
+ authority: Reference,
1658
+ activatingDecision: Reference,
1659
+ fence: Reference,
1660
+ revision: SafeInt,
1661
+ activatedAt: UtcSecond
1662
+ });
1663
+ const CatalogEntryCommon = {
1664
+ id: Identifier,
1665
+ activeSet: Reference,
1666
+ selectionId: Identifier,
1667
+ memberId: Identifier,
1668
+ extensionRelease: Reference,
1669
+ workflow: Reference,
1670
+ example: Type.Union([Reference, Type.Null()]),
1671
+ jobClass: Type.Union([Reference, Type.Null()]),
1672
+ workloadArtifact: Type.Union([Reference, Type.Null()]),
1673
+ contracts: References(),
1674
+ availabilityEvidence: Evidence()
1675
+ };
1676
+ const CatalogEntrySchema = Type.Union([closed({
1677
+ ...CatalogEntryCommon,
1678
+ availability: Type.Literal("available")
1679
+ }), closed({
1680
+ ...CatalogEntryCommon,
1681
+ availability: Type.Literal("unavailable"),
1682
+ unavailableReason: NonEmptyString
1683
+ })]);
1684
+ const CatalogSchema = closed({
1685
+ ...Header,
1686
+ kind: Type.Literal("catalog"),
1687
+ activeSet: Reference,
1688
+ entries: Type.Array(CatalogEntrySchema, { uniqueItems: true })
1689
+ });
1690
+ const BoundAttestationSchema = closed({
1691
+ ...Header,
1692
+ kind: Type.Literal("bound-attestation"),
1693
+ subject: Reference,
1694
+ issuer: Orn,
1695
+ evidence: Reference,
1696
+ verification: Type.Union([
1697
+ Type.Literal("publisher-signature"),
1698
+ Type.Literal("registry-recognition"),
1699
+ Type.Literal("source-provenance"),
1700
+ Type.Literal("component-digest")
1701
+ ]),
1702
+ observedAt: UtcSecond,
1703
+ signature: NonEmptyString
1704
+ });
1705
+ const organizationReleaseV1 = {
1706
+ literal: ORGANIZATION_RELEASE_PROFILE,
1707
+ documents: {
1708
+ dependencyLock: DependencyLockSchema,
1709
+ organizationBuild: OrganizationBuildSchema,
1710
+ importDisposition: ImportDispositionSchema,
1711
+ releaseStatusObservation: ReleaseStatusObservationSchema,
1712
+ releaseEligibility: ReleaseEligibilitySchema,
1713
+ organizationRelease: OrganizationReleaseSchema,
1714
+ admissionRecord: AdmissionRecordSchema,
1715
+ admissionStatusObservation: AdmissionStatusObservationSchema,
1716
+ memberObservation: MemberObservationSchema,
1717
+ activeSet: ActiveSetSchema,
1718
+ catalog: CatalogSchema,
1719
+ boundAttestation: BoundAttestationSchema
1720
+ }
1721
+ };
1722
+ //#endregion
1723
+ //#region src/organization/source.v3.ts
1724
+ const ORGANIZATION_SOURCE_V3_PROFILE = "dsg.organization.source/3";
1725
+ const IdentifierSchema = Type.String({ pattern: "^[a-z][a-z0-9-]*(?:[.-][a-z0-9]+)*$" });
1726
+ const UniqueIdentifiers = () => Type.Array(IdentifierSchema, {
1727
+ minItems: 1,
1728
+ uniqueItems: true
1729
+ });
1730
+ const IdentifierSet = () => Type.Array(IdentifierSchema, { uniqueItems: true });
1731
+ const UniquePaths = () => Type.Array(OrganizationDocumentPathSchema, { uniqueItems: true });
1732
+ const UniqueStrings = () => Type.Array(NonEmptyString, { uniqueItems: true });
1733
+ const OrganizationSourceProjectSchema = closed({
1734
+ schemaVersion: Type.Literal(3),
1735
+ kind: Type.Literal("project-membership"),
1736
+ id: IdentifierSchema,
1737
+ source: ProjectSourceSchema,
1738
+ contract: OrganizationDocumentPathSchema,
1739
+ handling: OrganizationDocumentPathSchema
1740
+ });
1741
+ const OrganizationSelectionDispositionSchema = closed({
1742
+ kind: Type.Union([
1743
+ Type.Literal("publication"),
1744
+ Type.Literal("import"),
1745
+ Type.Literal("admission"),
1746
+ Type.Literal("target"),
1747
+ Type.Literal("check"),
1748
+ Type.Literal("setup"),
1749
+ Type.Literal("paid-execution")
1750
+ ]),
1751
+ required: Type.Boolean(),
1752
+ acceptable: UniqueStrings()
1753
+ });
1754
+ const AuthoredOverlaySchema = closed({
1755
+ id: IdentifierSchema,
1756
+ document: OrganizationDocumentPathSchema,
1757
+ sha256: Hex64,
1758
+ mediaType: NonEmptyString
1759
+ });
1760
+ const CapabilitySelectionV3Schema = closed({
1761
+ schemaVersion: Type.Literal(3),
1762
+ kind: Type.Literal("capability-selection"),
1763
+ id: IdentifierSchema,
1764
+ release: ExtensionReleaseReferenceSchema,
1765
+ memberIds: UniqueIdentifiers(),
1766
+ origin: Type.Union([
1767
+ Type.Literal("workspace"),
1768
+ Type.Literal("official"),
1769
+ Type.Literal("curated")
1770
+ ]),
1771
+ dependencyLock: OrganizationDocumentPathSchema,
1772
+ requiredDispositions: Type.Array(OrganizationSelectionDispositionSchema, {
1773
+ minItems: 1,
1774
+ uniqueItems: true
1775
+ }),
1776
+ authoredOverlays: Type.Array(AuthoredOverlaySchema, { uniqueItems: true })
1777
+ });
1778
+ const WorkspaceProfileV3Schema = closed({
1779
+ schemaVersion: Type.Literal(3),
1780
+ kind: Type.Literal("workspace-profile"),
1781
+ profile: Type.Literal(ORGANIZATION_SOURCE_V3_PROFILE),
1782
+ id: IdentifierSchema,
1783
+ version: Type.String({ pattern: "^(?:0|[1-9][0-9]*)\\.[0-9]+\\.[0-9]+$" }),
1784
+ requirements: closed({
1785
+ facts: UniqueStrings(),
1786
+ minimumProjects: Type.Integer({ minimum: 0 }),
1787
+ requiredSelections: Type.Array(IdentifierSchema, { uniqueItems: true }),
1788
+ instructions: Type.Boolean()
1789
+ }),
1790
+ allowedOrigins: Type.Array(Type.Union([
1791
+ Type.Literal("workspace"),
1792
+ Type.Literal("official"),
1793
+ Type.Literal("curated")
1794
+ ]), {
1795
+ minItems: 1,
1796
+ uniqueItems: true
1797
+ }),
1798
+ sourceChecks: UniquePaths()
1799
+ });
1800
+ /** A semantic dependency lock is a source document referenced by the root;
1801
+ * its lock bytes contain no Build self-reference or runtime observations. */
1802
+ const OrganizationDependencyLockSchema = DependencyLockSchema;
1803
+ const OrganizationSourceReleaseMemberSchema = closed({
1804
+ id: IdentifierSchema,
1805
+ kind: OrganizationReleaseMemberKindSchema,
1806
+ required: Type.Boolean(),
1807
+ acceptableDispositions: Type.Array(NonEmptyString, {
1808
+ minItems: 1,
1809
+ uniqueItems: true
1810
+ }),
1811
+ subject: OrganizationDocumentPathSchema
1812
+ });
1813
+ /** Source-only Organization Release declaration. Runtime status, admission,
1814
+ * activation, predecessor, and supersession belong to release records. */
1815
+ const OrganizationReleaseDeclarationSchema = closed({
1816
+ schemaVersion: Type.Literal(3),
1817
+ kind: Type.Literal("organization-release-declaration"),
1818
+ id: IdentifierSchema,
1819
+ dependencyLock: OrganizationDocumentPathSchema,
1820
+ selections: IdentifierSet(),
1821
+ members: Type.Array(OrganizationSourceReleaseMemberSchema, {
1822
+ minItems: 1,
1823
+ uniqueItems: true
1824
+ }),
1825
+ acceptance: closed({
1826
+ requiredMembers: UniqueIdentifiers(),
1827
+ acceptableDispositions: Type.Array(NonEmptyString, {
1828
+ minItems: 1,
1829
+ uniqueItems: true
1830
+ })
1831
+ })
1832
+ });
1833
+ const OrganizationRootV3Schema = closed({
1834
+ schemaVersion: Type.Literal(3),
1835
+ kind: Type.Literal("organization"),
1836
+ org: NonEmptyString,
1837
+ space: OrganizationSpaceSchema,
1838
+ purpose: NonEmptyString,
1839
+ profile: OrganizationDocumentPathSchema,
1840
+ projects: UniquePaths(),
1841
+ capabilities: UniquePaths(),
1842
+ dependencyLocks: UniquePaths(),
1843
+ releases: UniquePaths(),
1844
+ instructions: UniquePaths(),
1845
+ documents: UniquePaths(),
1846
+ archive: Type.Optional(OrganizationDocumentPathSchema),
1847
+ source: Type.Optional(OrganizationSourceLocationSchema)
1848
+ });
1849
+ const organizationSourceV3 = {
1850
+ literal: ORGANIZATION_SOURCE_V3_PROFILE,
1851
+ rootDocument: "organization",
1852
+ documents: {
1853
+ organization: OrganizationRootV3Schema,
1854
+ profile: WorkspaceProfileV3Schema,
1855
+ project: OrganizationSourceProjectSchema,
1856
+ capabilitySelection: CapabilitySelectionV3Schema,
1857
+ dependencyLock: OrganizationDependencyLockSchema,
1858
+ releaseMember: OrganizationSourceReleaseMemberSchema,
1859
+ releaseDeclaration: OrganizationReleaseDeclarationSchema
1860
+ }
1861
+ };
1862
+ //#endregion
1863
+ //#region src/run/job-class.v1.ts
1864
+ const JOB_CLASS_PROFILE = "dsg.run.job-class/1";
1865
+ const RequiredReferences = () => Type.Array(Reference, {
1866
+ minItems: 1,
1867
+ uniqueItems: true
1868
+ });
1869
+ const RequiredStrings = () => Type.Array(NonEmptyString, {
1870
+ minItems: 1,
1871
+ uniqueItems: true
1872
+ });
1873
+ const JobClassBoundsSchema = closed({
1874
+ maxRunSeconds: SafeInt,
1875
+ maxGpuSeconds: SafeInt,
1876
+ maxParallelism: SafeInt,
1877
+ maxUsdMicroUnits: SafeInt
1878
+ });
1879
+ const JobClassSchema = closed({
1880
+ profile: Type.Literal(JOB_CLASS_PROFILE),
1881
+ schemaVersion: Type.Literal(1),
1882
+ kind: Type.Literal("job-class"),
1883
+ id: NonEmptyString,
1884
+ executor: NonEmptyString,
1885
+ mode: NonEmptyString,
1886
+ modeEnvironmentVariable: NonEmptyString,
1887
+ workloadArtifact: Reference,
1888
+ platforms: RequiredStrings(),
1889
+ isolation: Type.Union([Type.Literal("ephemeral"), Type.Literal("dedicated")]),
1890
+ inputContracts: RequiredReferences(),
1891
+ outputContracts: RequiredReferences(),
1892
+ eventCatalog: Reference,
1893
+ decisionRequirements: RequiredReferences(),
1894
+ bounds: JobClassBoundsSchema,
1895
+ handling: Type.Union([
1896
+ Type.Literal("public"),
1897
+ Type.Literal("restricted"),
1898
+ Type.Literal("confidential")
1899
+ ]),
1900
+ retention: Type.Union([
1901
+ Type.Literal("ephemeral"),
1902
+ Type.Literal("bounded"),
1903
+ Type.Literal("durable")
1904
+ ]),
1905
+ completion: Reference,
1906
+ teardown: Reference,
1907
+ evidence: Reference,
1908
+ replay: Reference
1909
+ });
1910
+ const jobClassV1 = {
1911
+ literal: JOB_CLASS_PROFILE,
1912
+ rootDocument: "jobClass",
1913
+ documents: { jobClass: JobClassSchema }
1914
+ };
1915
+ //#endregion
1916
+ //#region src/run/workload-artifact.v1.ts
1917
+ const WORKLOAD_ARTIFACT_PROFILE = "dsg.run.workload-artifact/1";
1918
+ const OciRepository = Type.String({ pattern: "^(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)*[a-z0-9](?:[a-z0-9-]*[a-z0-9])?(?::[1-9][0-9]{0,4})?/[a-z0-9]+(?:[._-][a-z0-9]+)*(?:/[a-z0-9]+(?:[._-][a-z0-9]+)*)*$" });
1919
+ const WorkloadSourceSchema = closed({
1920
+ repository: NonEmptyString,
1921
+ revision: Type.String({ pattern: "^(?:[0-9a-f]{40}|[0-9a-f]{64})$" }),
1922
+ sourceDigest: Hex64
1923
+ });
1924
+ const OciPlatformSchema = closed({
1925
+ os: NonEmptyString,
1926
+ architecture: NonEmptyString,
1927
+ variant: Type.Optional(NonEmptyString)
1928
+ });
1929
+ const WorkloadArtifactSchema = closed({
1930
+ profile: Type.Literal(WORKLOAD_ARTIFACT_PROFILE),
1931
+ schemaVersion: Type.Literal(1),
1932
+ kind: Type.Literal("workload-artifact"),
1933
+ id: NonEmptyString,
1934
+ format: Type.Literal("oci-image"),
1935
+ source: WorkloadSourceSchema,
1936
+ index: Type.Union([Type.Null(), closed({
1937
+ sha256: Hex64,
1938
+ mediaType: Type.Union([Type.Literal("application/vnd.oci.image.index.v1+json"), Type.Literal("application/vnd.docker.distribution.manifest.list.v2+json")])
1939
+ })]),
1940
+ executable: closed({
1941
+ repository: OciRepository,
1942
+ platform: OciPlatformSchema,
1943
+ manifest: closed({
1944
+ sha256: Hex64,
1945
+ mediaType: Type.Union([Type.Literal("application/vnd.oci.image.manifest.v1+json"), Type.Literal("application/vnd.docker.distribution.manifest.v2+json")])
1946
+ }),
1947
+ config: closed({
1948
+ sha256: Hex64,
1949
+ mediaType: Type.Union([Type.Literal("application/vnd.oci.image.config.v1+json"), Type.Literal("application/vnd.docker.container.image.v1+json")])
1950
+ })
1951
+ }),
1952
+ entrypoint: Type.Array(NonEmptyString, { minItems: 1 })
1953
+ });
1954
+ const WorkloadArtifactProvenanceSchema = closed({
1955
+ profile: Type.Literal(WORKLOAD_ARTIFACT_PROFILE),
1956
+ schemaVersion: Type.Literal(1),
1957
+ kind: Type.Literal("workload-artifact-provenance"),
1958
+ artifact: Reference,
1959
+ source: WorkloadSourceSchema,
1960
+ build: Reference,
1961
+ transportArchiveSha256: Hex64,
1962
+ observedAt: UtcSecond,
1963
+ evidence: Type.Array(Reference, {
1964
+ minItems: 1,
1965
+ uniqueItems: true
1966
+ })
1967
+ });
1968
+ const workloadArtifactV1 = {
1969
+ literal: WORKLOAD_ARTIFACT_PROFILE,
1970
+ rootDocument: "workloadArtifact",
1971
+ documents: {
1972
+ workloadArtifact: WorkloadArtifactSchema,
1973
+ provenance: WorkloadArtifactProvenanceSchema
1974
+ }
1975
+ };
1976
+ //#endregion
1977
+ //#region src/run/execution-binding.v1.ts
1978
+ const EXECUTION_BINDING_PROFILE = "dsg.run.execution-binding/1";
1979
+ const ExecutionBindingSchema = closed({
1980
+ profile: Type.Literal(EXECUTION_BINDING_PROFILE),
1981
+ schemaVersion: Type.Literal(1),
1982
+ kind: Type.Literal("execution-binding"),
1983
+ installation: Orn,
1984
+ operation: Reference,
1985
+ activeSet: Reference,
1986
+ admission: Reference,
1987
+ organizationRelease: Reference,
1988
+ organizationBuild: Reference,
1989
+ selection: Reference,
1990
+ extensionRelease: Reference,
1991
+ workflow: Reference,
1992
+ jobClass: Reference,
1993
+ workloadArtifact: Reference,
1994
+ executableManifestSha256: Hex64,
1995
+ target: Reference,
1996
+ eventCatalog: Reference,
1997
+ law: Reference,
1998
+ reservation: Reference,
1999
+ trustView: Reference
2000
+ });
2001
+ const ExecutionRequestEnvelopeSchema = closed({
2002
+ profile: Type.Literal(EXECUTION_BINDING_PROFILE),
2003
+ schemaVersion: Type.Literal(1),
2004
+ kind: Type.Literal("execution-request-envelope"),
2005
+ operation: OperationRequestSchema,
2006
+ binding: ExecutionBindingSchema,
2007
+ jobClass: JobClassSchema,
2008
+ workloadArtifact: WorkloadArtifactSchema,
2009
+ workloadArtifactProvenance: WorkloadArtifactProvenanceSchema,
2010
+ admission: AdmissionRecordSchema,
2011
+ activeSet: ActiveSetSchema,
2012
+ selection: BuildSelectionSchema,
2013
+ catalogEntry: CatalogEntrySchema,
2014
+ releaseEligibility: ReleaseEligibilitySchema
2015
+ });
2016
+ const executionBindingV1 = {
2017
+ literal: EXECUTION_BINDING_PROFILE,
2018
+ rootDocument: "executionBinding",
2019
+ documents: {
2020
+ executionBinding: ExecutionBindingSchema,
2021
+ executionRequestEnvelope: ExecutionRequestEnvelopeSchema
2022
+ }
2023
+ };
2024
+ //#endregion
1143
2025
  //#region src/index.ts
1144
2026
  /** Every profile this version of the package defines, keyed by literal.
1145
2027
  * Profile modules are added here as they are extracted; the rules test
@@ -1164,9 +2046,15 @@ const PROFILES = {
1164
2046
  [bootstrapV1.literal]: bootstrapV1,
1165
2047
  [ordinaryAuthorityV1.literal]: ordinaryAuthorityV1,
1166
2048
  [standingOrderActivationV1.literal]: standingOrderActivationV1,
1167
- [organizationSourceV2.literal]: organizationSourceV2
2049
+ [organizationSourceV2.literal]: organizationSourceV2,
2050
+ [extensionReleaseV1.literal]: extensionReleaseV1,
2051
+ [organizationSourceV3.literal]: organizationSourceV3,
2052
+ [organizationReleaseV1.literal]: organizationReleaseV1,
2053
+ [jobClassV1.literal]: jobClassV1,
2054
+ [workloadArtifactV1.literal]: workloadArtifactV1,
2055
+ [executionBindingV1.literal]: executionBindingV1
1168
2056
  };
1169
2057
  //#endregion
1170
- export { ADOPTION_FACT_PROFILE, AcceptedSchema, AdoptionFactSchema, BOOTSTRAP_PROFILE, BootstrapActionSchema, BootstrapIntentSchema, CapabilityOriginSchema, CapabilitySelectionSchema, DECISION_PROFILE, DISPATCH_CONSUME_PROFILE, DISPATCH_MAX_SKEW_SECONDS, DispatchConsumeRequestSchema, DispatchLeaseSchema, DispatchRefusalCodeSchema, DispatchRefusalSchema, EVENT_LINE_PREFIX, EVENT_PROFILE, EXECUTOR_PROTOCOL_VERSION, EventSchema, EventStreamSealSchema, ExecutionDocumentSchema, ExecutionLawSchema, ExecutionResourcesSchema, ExperimentRefSchema, GOOGLE_IDENTITY_PROFILE, GOOGLE_SIGN_IN_ISSUER, GoogleIdentitySchema, Hex64, IDENTITY_BINDING_PROFILE, IdentityBindingSchema, LIFECYCLE_KINDS, NonEmptyString, OPERATION_PROFILE, ORDINARY_AUTHORITY_PROFILE, ORGANIZATION_SOURCE_PROFILE, OperationBeforeSchema, OperationCleanupSchema, OperationCostSchema, OperationEvidenceSchema, OperationExecutionSchema, OperationRequestSchema, OperationStatusSchema, OrdinaryAuthoritySchema, OrganizationDocumentPathSchema, OrganizationInstructionSchema, OrganizationRootSchema, OrganizationRootV1Schema, OrganizationSourceLocationSchema, OrganizationSpaceSchema, Orn, PRICE_PROFILE_REFERENCE, PROFILES, PROVIDER_PROTOCOL_VERSION, PersonReference, ProjectMembershipSchema, ProjectSourceSchema, REFUSAL_PROFILE, REFUSAL_V2_PROFILE, REFUSAL_V3_PROFILE, REQUEST_PROFILE, RESOURCE_DESCRIPTOR_KIND, RESOURCE_DESCRIPTOR_PROFILE, REVOCATIONS_PROFILE, RUN_SUMMARY_PROFILE, ReadbackSchema, Reference, RefusalCodeSchema, RefusalCodeV2Schema, RefusalCodeV3Schema, RefusalSchema, RefusalStageV2Schema, RefusalStageV3Schema, RefusalV2Schema, RefusalV3Schema, ReleaseDeclarationSchema, ReleaseMemberKindSchema, RequestCeilingsSchema, ResourceDescriptorSchema, RevocationPointerSchema, RevocationSchema, RunDecisionSchema, RunRequestSchema, RunSummaryDecisionSchema, RunSummarySchema, SCOPE_REFERENCE, SIGNED_LAW_DOMAIN, SIGNED_LAW_PROFILE, STANDING_ORDER_ACTIVATION_EVENT_KIND, STANDING_ORDER_ACTIVATION_PROFILE, SafeInt, SignedBootstrapIntentSchema, SignedLawBundleSchema, SignedStandingOrderActivationSchema, StandingOrderActivationEventSchema, StandingOrderActivationSchema, StandingOrderModeSchema, UtcSecond, WorkspaceProfileSchema, closed };
2058
+ export { ADOPTION_FACT_PROFILE, AcceptedSchema, ActiveMemberSchema, ActiveSetSchema, AdmissionRecordSchema, AdmissionStatusObservationSchema, AdoptionFactSchema, ApprovedUseSchema, AuthoredOverlaySchema, BOOTSTRAP_PROFILE, BootstrapActionSchema, BootstrapIntentSchema, BoundAttestationSchema, BuildComponentSchema, BuildSelectionSchema, CapabilityOriginSchema, CapabilitySelectionSchema, CapabilitySelectionV3Schema, CatalogEntrySchema, CatalogSchema, CompilerContractSchema, ComponentBindingSchema, DECISION_PROFILE, DISPATCH_CONSUME_PROFILE, DISPATCH_MAX_SKEW_SECONDS, DependencyKindSchema, DependencyLockEntrySchema, DependencyLockSchema, DispatchConsumeRequestSchema, DispatchLeaseSchema, DispatchRefusalCodeSchema, DispatchRefusalSchema, EVENT_LINE_PREFIX, EVENT_PROFILE, EXECUTION_BINDING_PROFILE, EXECUTOR_PROTOCOL_VERSION, EXTENSION_RELEASE_CANONICALIZATION, EXTENSION_RELEASE_PROFILE, EventSchema, EventStreamSealSchema, ExecutionBindingSchema, ExecutionDocumentSchema, ExecutionLawSchema, ExecutionRequestEnvelopeSchema, ExecutionResourcesSchema, ExperimentRefSchema, ExtensionBoundsSchema, ExtensionComponentKindSchema, ExtensionComponentReferenceSchema, ExtensionComponentSchema, ExtensionComputeRequirementsSchema, ExtensionDependencyKindSchema, ExtensionDependencySchema, ExtensionReleaseReferenceSchema, ExtensionReleaseSchema, ExtensionReleaseSignatureSchema, ExtensionRequirementsSchema, GOOGLE_IDENTITY_PROFILE, GOOGLE_SIGN_IN_ISSUER, GoogleIdentitySchema, Hex64, IDENTITY_BINDING_PROFILE, IdentityBindingSchema, ImportDispositionSchema, JOB_CLASS_PROFILE, JobClassBoundsSchema, JobClassSchema, LIFECYCLE_KINDS, MemberObservationSchema, NonEmptyString, OPERATION_PROFILE, ORDINARY_AUTHORITY_PROFILE, ORGANIZATION_RELEASE_CANONICALIZATION, ORGANIZATION_RELEASE_PROFILE, ORGANIZATION_SOURCE_PROFILE, ORGANIZATION_SOURCE_V3_PROFILE, OciPlatformSchema, OperationBeforeSchema, OperationCleanupSchema, OperationCostSchema, OperationEvidenceSchema, OperationExecutionSchema, OperationRequestSchema, OperationStatusSchema, OrdinaryAuthoritySchema, OrganizationBuildSchema, OrganizationDependencyLockSchema, OrganizationDocumentPathSchema, OrganizationInstructionSchema, OrganizationReleaseDeclarationSchema, OrganizationReleaseMemberKindSchema, OrganizationReleaseMemberSchema, OrganizationReleaseSchema, OrganizationRootSchema, OrganizationRootV1Schema, OrganizationRootV3Schema, OrganizationSelectionDispositionSchema, OrganizationSourceLocationSchema, OrganizationSourceProjectSchema, OrganizationSourceReleaseMemberSchema, OrganizationSpaceSchema, Orn, PRICE_PROFILE_REFERENCE, PROFILES, PROVIDER_PROTOCOL_VERSION, PersonReference, ProjectMembershipSchema, ProjectSourceSchema, REFUSAL_PROFILE, REFUSAL_V2_PROFILE, REFUSAL_V3_PROFILE, REQUEST_PROFILE, RESOURCE_DESCRIPTOR_KIND, RESOURCE_DESCRIPTOR_PROFILE, REVOCATIONS_PROFILE, RUN_SUMMARY_PROFILE, ReadbackSchema, Reference, RefusalCodeSchema, RefusalCodeV2Schema, RefusalCodeV3Schema, RefusalSchema, RefusalStageV2Schema, RefusalStageV3Schema, RefusalV2Schema, RefusalV3Schema, ReleaseDeclarationSchema, ReleaseEligibilitySchema, ReleaseMemberKindSchema, ReleaseStatusObservationSchema, ReleaseStatusSchema, RequestCeilingsSchema, ResourceDescriptorSchema, RevocationPointerSchema, RevocationSchema, RunDecisionSchema, RunRequestSchema, RunSummaryDecisionSchema, RunSummarySchema, SCOPE_REFERENCE, SIGNED_LAW_DOMAIN, SIGNED_LAW_PROFILE, STANDING_ORDER_ACTIVATION_EVENT_KIND, STANDING_ORDER_ACTIVATION_PROFILE, SafeInt, SignedBootstrapIntentSchema, SignedLawBundleSchema, SignedStandingOrderActivationSchema, StandingOrderActivationEventSchema, StandingOrderActivationSchema, StandingOrderModeSchema, UtcSecond, WORKLOAD_ARTIFACT_PROFILE, WorkloadArtifactProvenanceSchema, WorkloadArtifactSchema, WorkloadSourceSchema, WorkspaceProfileSchema, WorkspaceProfileV3Schema, closed };
1171
2059
 
1172
2060
  //# sourceMappingURL=index.mjs.map