@zephytiju/juntai-typescript-sdk 1.2.0 → 2.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.0
4
+
5
+ - Refresh Application Metadata to the immutable Meridian-backed 2.0.0 OpenAPI release.
6
+ - Refresh Blueprint to the immutable Meridian-backed 3.0.0 OpenAPI release.
7
+ - Regenerate both full-service-ID client modules atomically and publish them only through the single aggregate package.
8
+ - Preserve the browser boundary: no Configuration, Artifact, Registry, OCI, Meridian, credential, persistence, or physical-data clients are exposed.
9
+
10
+ ## 1.2.1
11
+
12
+ - Refresh Application Metadata to the exact immutable 1.1.1 OpenAPI release.
13
+ - Refresh Blueprint to the exact immutable 2.0.2 OpenAPI release.
14
+ - Preserve the existing generated client and export surfaces under compatible source snapshots.
15
+
3
16
  ## 1.2.0
4
17
 
5
18
  - Onboard the exact immutable Blueprint Service 2.0.0 OpenAPI release as `platform.blueprint`.
@@ -206,7 +206,7 @@ export type ApplicationVersionPage = {
206
206
  /**
207
207
  * ArtifactContributionReference
208
208
  *
209
- * Exact immutable Artifact Registry version and digest.
209
+ * Compatibility shape for an exact immutable Meridian Artifact version.
210
210
  */
211
211
  export type ArtifactContributionReference = {
212
212
  /**
@@ -225,7 +225,7 @@ export type ArtifactContributionReference = {
225
225
  /**
226
226
  * ConfigurationContributionReference
227
227
  *
228
- * Exact Configuration Registry identity/revision pair.
228
+ * Compatibility shape for an exact Meridian Configuration identity/version.
229
229
  */
230
230
  export type ConfigurationContributionReference = {
231
231
  /**
@@ -5,22 +5,34 @@ export type ClientOptions = {
5
5
  * ArtifactReference
6
6
  */
7
7
  export type ArtifactReference = {
8
- /**
9
- * Artifact Id
10
- */
11
- artifact_id: string;
12
8
  /**
13
9
  * Digest
14
10
  */
15
11
  digest: string;
12
+ /**
13
+ * Kind
14
+ */
15
+ kind: string;
16
+ /**
17
+ * Name
18
+ */
19
+ name: string;
20
+ /**
21
+ * Namespace
22
+ */
23
+ namespace: string;
16
24
  /**
17
25
  * Reference Type
18
26
  */
19
27
  reference_type?: 'artifact';
20
28
  /**
21
- * Version Id
29
+ * Resource Id
30
+ */
31
+ resource_id: string;
32
+ /**
33
+ * Version
22
34
  */
23
- version_id: string;
35
+ version: string;
24
36
  };
25
37
  /**
26
38
  * Asset
@@ -231,22 +243,34 @@ export type BoundedMetadata = {
231
243
  * ConfigurationReference
232
244
  */
233
245
  export type ConfigurationReference = {
234
- /**
235
- * Configuration Id
236
- */
237
- configuration_id: string;
238
246
  /**
239
247
  * Digest
240
248
  */
241
249
  digest: string;
250
+ /**
251
+ * Kind
252
+ */
253
+ kind: string;
254
+ /**
255
+ * Name
256
+ */
257
+ name: string;
258
+ /**
259
+ * Namespace
260
+ */
261
+ namespace: string;
242
262
  /**
243
263
  * Reference Type
244
264
  */
245
265
  reference_type?: 'configuration';
246
266
  /**
247
- * Revision Id
267
+ * Resource Id
268
+ */
269
+ resource_id: string;
270
+ /**
271
+ * Version
248
272
  */
249
- revision_id: string;
273
+ version: string;
250
274
  };
251
275
  /**
252
276
  * CreateAssetRequest
@@ -2,11 +2,11 @@
2
2
  "schemaVersion": "juntai.typescript-sdk/release-manifest/v1",
3
3
  "package": {
4
4
  "name": "@zephytiju/juntai-typescript-sdk",
5
- "version": "1.2.0"
5
+ "version": "2.0.0"
6
6
  },
7
7
  "openapiLock": {
8
8
  "path": "sources/openapi.lock.json",
9
- "sha256": "cd3cf91c5b9dad9a187b0ed3b9cfd9d1b212b89891ef57e4d1f17bcd2f14d80c"
9
+ "sha256": "261229de4bd95d259587ebb576469d161956e2b50b4cf1232287c56600375bf7"
10
10
  },
11
11
  "generator": {
12
12
  "name": "@hey-api/openapi-ts",
@@ -30,31 +30,31 @@
30
30
  },
31
31
  {
32
32
  "serviceId": "platform.application-metadata",
33
- "serviceVersion": "1.1.0",
33
+ "serviceVersion": "2.0.0",
34
34
  "ownerRepository": "https://github.com/zephytiju/JuntaiApplicationMetadata",
35
- "sourceCommit": "2c1b82892f1df4f764230197fe3b1f262e7caa56",
36
- "artifactLocator": "oci://ghcr.io/zephytiju/juntai-application-metadata-openapi@sha256:f1ede5608fe170d8e56fcb3b32202a860407e4960a186f5e9a80cf57466ddf4c",
37
- "artifactManifestDigest": "sha256:f1ede5608fe170d8e56fcb3b32202a860407e4960a186f5e9a80cf57466ddf4c",
35
+ "sourceCommit": "6b7cc112ea7b7842f62dd7486cccfa8b5977f777",
36
+ "artifactLocator": "oci://ghcr.io/zephytiju/juntai-application-metadata-openapi@sha256:89dae523e6cdafffcfb73a09193146b60e8ece5bc54cb85a00dcad63ba92f3f6",
37
+ "artifactManifestDigest": "sha256:89dae523e6cdafffcfb73a09193146b60e8ece5bc54cb85a00dcad63ba92f3f6",
38
38
  "openapiPath": "openapi/application-metadata.v1.json",
39
- "openapiSha256": "a6a6d1eed63fbbd88269a890186b25f2606c01a81a9d7dfeb516a0cbf8c4bbb6",
39
+ "openapiSha256": "ed8a13619e26b4ae3dbd42fa3d445d70d53ca5cafde041ade16e43f2acd15261",
40
40
  "generatorProfile": "juntai.fuse.openapi/v1",
41
41
  "namespace": "platformApplicationMetadata",
42
42
  "outputPath": "src/generated/platform.application-metadata",
43
- "outputSha256": "5eccd79829b56f4abb22ac772d5bd4827d530a1ec2330c70d9ed0751256d600f"
43
+ "outputSha256": "1a78feb508b149667d7bf73e4097d940a277344d6f258bad4ed7bfc7e6e30dc2"
44
44
  },
45
45
  {
46
46
  "serviceId": "platform.blueprint",
47
- "serviceVersion": "2.0.0",
47
+ "serviceVersion": "3.0.0",
48
48
  "ownerRepository": "https://github.com/zephytiju/JuntaiBlueprintMarketplace",
49
- "sourceCommit": "1a88be046c77bf0cef036d0be7a31529e1f73cd7",
50
- "artifactLocator": "oci://ghcr.io/zephytiju/juntai-blueprint-marketplace-openapi@sha256:63af9b3930fd755fca18630ee6b61ac8b30a862a8b97cd22b9f134a1fbf10f8a",
51
- "artifactManifestDigest": "sha256:63af9b3930fd755fca18630ee6b61ac8b30a862a8b97cd22b9f134a1fbf10f8a",
49
+ "sourceCommit": "0da9bf43a6323f00ba7dc292847a600924f7f15a",
50
+ "artifactLocator": "oci://ghcr.io/zephytiju/juntai-blueprint-marketplace-openapi@sha256:e6e3bece62f26d631966bfaa88c9f3d65d5a4349b71d727d4ee959a3ad7f2b2d",
51
+ "artifactManifestDigest": "sha256:e6e3bece62f26d631966bfaa88c9f3d65d5a4349b71d727d4ee959a3ad7f2b2d",
52
52
  "openapiPath": "contracts/openapi/blueprint-service.v1.json",
53
- "openapiSha256": "d5a4f0044b8bccf8a6618ed59c5afcc325168432d0826f28cdfdae9d45e4d72e",
53
+ "openapiSha256": "0a1d34129ed514fc0e7b227c6d23fbff61f025de209d0ebeedd0cf618a6bd26d",
54
54
  "generatorProfile": "juntai.fuse.openapi/v1",
55
55
  "namespace": "platformBlueprint",
56
56
  "outputPath": "src/generated/platform.blueprint",
57
- "outputSha256": "ea125a8fba5474bbbe8b044591b8529e67dcc6e0db8a492d2451ddc46a638a95"
57
+ "outputSha256": "ff4871be1c8eccdcacc5dd8dba087118bedc55904ca3bb4c65a52cb44b2baaf4"
58
58
  }
59
59
  ]
60
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zephytiju/juntai-typescript-sdk",
3
- "version": "1.2.0",
3
+ "version": "2.0.0",
4
4
  "description": "Aggregate generated TypeScript clients for Console-facing Juntai services",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,39 +29,39 @@
29
29
  "serviceId": "platform.application-metadata",
30
30
  "ownerTeam": "Juntai Platform Team",
31
31
  "ownerRepository": "https://github.com/zephytiju/JuntaiApplicationMetadata",
32
- "sourceCommit": "2c1b82892f1df4f764230197fe3b1f262e7caa56",
33
- "serviceVersion": "1.1.0",
34
- "artifactLocator": "oci://ghcr.io/zephytiju/juntai-application-metadata-openapi@sha256:f1ede5608fe170d8e56fcb3b32202a860407e4960a186f5e9a80cf57466ddf4c",
35
- "artifactManifestDigest": "sha256:f1ede5608fe170d8e56fcb3b32202a860407e4960a186f5e9a80cf57466ddf4c",
32
+ "sourceCommit": "6b7cc112ea7b7842f62dd7486cccfa8b5977f777",
33
+ "serviceVersion": "2.0.0",
34
+ "artifactLocator": "oci://ghcr.io/zephytiju/juntai-application-metadata-openapi@sha256:89dae523e6cdafffcfb73a09193146b60e8ece5bc54cb85a00dcad63ba92f3f6",
35
+ "artifactManifestDigest": "sha256:89dae523e6cdafffcfb73a09193146b60e8ece5bc54cb85a00dcad63ba92f3f6",
36
36
  "openapiPath": "openapi/application-metadata.v1.json",
37
- "openapiSha256": "a6a6d1eed63fbbd88269a890186b25f2606c01a81a9d7dfeb516a0cbf8c4bbb6",
38
- "snapshotPath": "sources/artifacts/platform.application-metadata/a6a6d1eed63fbbd88269a890186b25f2606c01a81a9d7dfeb516a0cbf8c4bbb6.json",
37
+ "openapiSha256": "ed8a13619e26b4ae3dbd42fa3d445d70d53ca5cafde041ade16e43f2acd15261",
38
+ "snapshotPath": "sources/artifacts/platform.application-metadata/ed8a13619e26b4ae3dbd42fa3d445d70d53ca5cafde041ade16e43f2acd15261.json",
39
39
  "generatorName": "@hey-api/openapi-ts",
40
40
  "generatorVersion": "0.99.0",
41
41
  "generatorProfile": "juntai.fuse.openapi/v1",
42
42
  "namespace": "platformApplicationMetadata",
43
43
  "compatibility": "compatible",
44
44
  "outputPath": "src/generated/platform.application-metadata",
45
- "outputSha256": "5eccd79829b56f4abb22ac772d5bd4827d530a1ec2330c70d9ed0751256d600f"
45
+ "outputSha256": "1a78feb508b149667d7bf73e4097d940a277344d6f258bad4ed7bfc7e6e30dc2"
46
46
  },
47
47
  {
48
48
  "serviceId": "platform.blueprint",
49
49
  "ownerTeam": "Juntai Platform Team",
50
50
  "ownerRepository": "https://github.com/zephytiju/JuntaiBlueprintMarketplace",
51
- "sourceCommit": "1a88be046c77bf0cef036d0be7a31529e1f73cd7",
52
- "serviceVersion": "2.0.0",
53
- "artifactLocator": "oci://ghcr.io/zephytiju/juntai-blueprint-marketplace-openapi@sha256:63af9b3930fd755fca18630ee6b61ac8b30a862a8b97cd22b9f134a1fbf10f8a",
54
- "artifactManifestDigest": "sha256:63af9b3930fd755fca18630ee6b61ac8b30a862a8b97cd22b9f134a1fbf10f8a",
51
+ "sourceCommit": "0da9bf43a6323f00ba7dc292847a600924f7f15a",
52
+ "serviceVersion": "3.0.0",
53
+ "artifactLocator": "oci://ghcr.io/zephytiju/juntai-blueprint-marketplace-openapi@sha256:e6e3bece62f26d631966bfaa88c9f3d65d5a4349b71d727d4ee959a3ad7f2b2d",
54
+ "artifactManifestDigest": "sha256:e6e3bece62f26d631966bfaa88c9f3d65d5a4349b71d727d4ee959a3ad7f2b2d",
55
55
  "openapiPath": "contracts/openapi/blueprint-service.v1.json",
56
- "openapiSha256": "d5a4f0044b8bccf8a6618ed59c5afcc325168432d0826f28cdfdae9d45e4d72e",
57
- "snapshotPath": "sources/artifacts/platform.blueprint/d5a4f0044b8bccf8a6618ed59c5afcc325168432d0826f28cdfdae9d45e4d72e.json",
56
+ "openapiSha256": "0a1d34129ed514fc0e7b227c6d23fbff61f025de209d0ebeedd0cf618a6bd26d",
57
+ "snapshotPath": "sources/artifacts/platform.blueprint/0a1d34129ed514fc0e7b227c6d23fbff61f025de209d0ebeedd0cf618a6bd26d.json",
58
58
  "generatorName": "@hey-api/openapi-ts",
59
59
  "generatorVersion": "0.99.0",
60
60
  "generatorProfile": "juntai.fuse.openapi/v1",
61
61
  "namespace": "platformBlueprint",
62
- "compatibility": "initial",
62
+ "compatibility": "breaking",
63
63
  "outputPath": "src/generated/platform.blueprint",
64
- "outputSha256": "ea125a8fba5474bbbe8b044591b8529e67dcc6e0db8a492d2451ddc46a638a95"
64
+ "outputSha256": "ff4871be1c8eccdcacc5dd8dba087118bedc55904ca3bb4c65a52cb44b2baaf4"
65
65
  }
66
66
  ]
67
67
  }