Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
1009 B
Go
28 lines
1009 B
Go
package schemadmt
|
|
|
|
import (
|
|
"github.com/ipld/go-ipld-prime/datamodel"
|
|
"github.com/ipld/go-ipld-prime/node/bindnode"
|
|
)
|
|
|
|
// ConcatenateSchemas returns a new schema DMT object containing the
|
|
// type declarations from both.
|
|
//
|
|
// As is usual for DMT form data, there is no check about the validity
|
|
// of the result yet; you'll need to apply `Compile` on the produced value
|
|
// to produce a usable compiled typesystem or to become certain that
|
|
// all references in the DMT are satisfied, etc.
|
|
func ConcatenateSchemas(a, b *Schema) *Schema {
|
|
// The joy of having an intermediate form that's just regular data model:
|
|
// we can implement this by simply using data model "copy" operations,
|
|
// and the result is correct.
|
|
nb := Prototypes.Schema.NewBuilder()
|
|
if err := datamodel.Copy(bindnode.Wrap(a, Prototypes.Schema.Type()), nb); err != nil {
|
|
panic(err)
|
|
}
|
|
if err := datamodel.Copy(bindnode.Wrap(b, Prototypes.Schema.Type()), nb); err != nil {
|
|
panic(err)
|
|
}
|
|
return bindnode.Unwrap(nb.Build()).(*Schema)
|
|
}
|