@liquidmetal-ai/drizzle 0.0.1 → 0.0.3

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.
Files changed (36) hide show
  1. package/.turbo/turbo-lint.log +6 -0
  2. package/dist/appify/index.test.js +1 -1
  3. package/dist/appify/parse.d.ts.map +1 -1
  4. package/dist/appify/parse.js +7 -1
  5. package/dist/appify/parse.test.js +1 -1
  6. package/dist/appify/validate.d.ts.map +1 -1
  7. package/dist/appify/validate.js +15 -4
  8. package/dist/appify/validate.test.js +29 -32
  9. package/dist/codestore.test.js +3 -3
  10. package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts +19 -1
  11. package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts.map +1 -1
  12. package/dist/liquidmetal/v1alpha1/catalog_connect.js +19 -1
  13. package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +198 -6
  14. package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
  15. package/dist/liquidmetal/v1alpha1/catalog_pb.js +320 -10
  16. package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts +26 -0
  17. package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts.map +1 -0
  18. package/dist/liquidmetal/v1alpha1/rainbow_public_connect.js +29 -0
  19. package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts +202 -0
  20. package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts.map +1 -0
  21. package/dist/liquidmetal/v1alpha1/rainbow_public_pb.js +298 -0
  22. package/dist/unsafe/codestore.d.ts.map +1 -1
  23. package/dist/unsafe/codestore.js +12 -2
  24. package/package.json +1 -1
  25. package/src/appify/index.test.ts +1 -1
  26. package/src/appify/parse.test.ts +1 -1
  27. package/src/appify/parse.ts +8 -2
  28. package/src/appify/validate.test.ts +29 -32
  29. package/src/appify/validate.ts +16 -4
  30. package/src/codestore.test.ts +3 -3
  31. package/src/liquidmetal/v1alpha1/catalog_connect.ts +19 -1
  32. package/src/liquidmetal/v1alpha1/catalog_pb.ts +390 -10
  33. package/src/liquidmetal/v1alpha1/rainbow_public_connect.ts +32 -0
  34. package/src/liquidmetal/v1alpha1/rainbow_public_pb.ts +366 -0
  35. package/src/unsafe/codestore.ts +13 -2
  36. package/tsconfig.tsbuildinfo +1 -1
@@ -174,6 +174,11 @@ export class ApplicationsResponse_Application extends Message<ApplicationsRespon
174
174
  */
175
175
  isActive = false;
176
176
 
177
+ /**
178
+ * @generated from field: string organization_id = 9;
179
+ */
180
+ organizationId = "";
181
+
177
182
  constructor(data?: PartialMessage<ApplicationsResponse_Application>) {
178
183
  super();
179
184
  proto3.util.initPartial(data, this);
@@ -190,6 +195,7 @@ export class ApplicationsResponse_Application extends Message<ApplicationsRespon
190
195
  { no: 6, name: "updated_at", kind: "message", T: Timestamp },
191
196
  { no: 7, name: "deleted_at", kind: "message", T: Timestamp, opt: true },
192
197
  { no: 8, name: "is_active", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
198
+ { no: 9, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
193
199
  ]);
194
200
 
195
201
  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplicationsResponse_Application {
@@ -562,12 +568,17 @@ export class VersionsResponse_Version extends Message<VersionsResponse_Version>
562
568
  previousVersionId = "";
563
569
 
564
570
  /**
565
- * @generated from field: google.protobuf.Timestamp created_at = 3;
571
+ * @generated from field: bool is_sandboxed = 3;
572
+ */
573
+ isSandboxed = false;
574
+
575
+ /**
576
+ * @generated from field: google.protobuf.Timestamp created_at = 4;
566
577
  */
567
578
  createdAt?: Timestamp;
568
579
 
569
580
  /**
570
- * @generated from field: google.protobuf.Timestamp updated_at = 4;
581
+ * @generated from field: google.protobuf.Timestamp updated_at = 5;
571
582
  */
572
583
  updatedAt?: Timestamp;
573
584
 
@@ -581,8 +592,9 @@ export class VersionsResponse_Version extends Message<VersionsResponse_Version>
581
592
  static readonly fields: FieldList = proto3.util.newFieldList(() => [
582
593
  { no: 1, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
583
594
  { no: 2, name: "previous_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
584
- { no: 3, name: "created_at", kind: "message", T: Timestamp },
585
- { no: 4, name: "updated_at", kind: "message", T: Timestamp },
595
+ { no: 3, name: "is_sandboxed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
596
+ { no: 4, name: "created_at", kind: "message", T: Timestamp },
597
+ { no: 5, name: "updated_at", kind: "message", T: Timestamp },
586
598
  ]);
587
599
 
588
600
  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VersionsResponse_Version {
@@ -621,6 +633,11 @@ export class CreateVersionRequest extends Message<CreateVersionRequest> {
621
633
  */
622
634
  previousVersionId = "";
623
635
 
636
+ /**
637
+ * @generated from field: optional bool is_sandboxed = 4;
638
+ */
639
+ isSandboxed?: boolean;
640
+
624
641
  constructor(data?: PartialMessage<CreateVersionRequest>) {
625
642
  super();
626
643
  proto3.util.initPartial(data, this);
@@ -632,6 +649,7 @@ export class CreateVersionRequest extends Message<CreateVersionRequest> {
632
649
  { no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
633
650
  { no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
634
651
  { no: 3, name: "previous_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
652
+ { no: 4, name: "is_sandboxed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
635
653
  ]);
636
654
 
637
655
  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateVersionRequest {
@@ -665,6 +683,11 @@ export class CreateVersionResponse extends Message<CreateVersionResponse> {
665
683
  */
666
684
  previousVersionId = "";
667
685
 
686
+ /**
687
+ * @generated from field: bool is_sandboxed = 3;
688
+ */
689
+ isSandboxed = false;
690
+
668
691
  constructor(data?: PartialMessage<CreateVersionResponse>) {
669
692
  super();
670
693
  proto3.util.initPartial(data, this);
@@ -675,6 +698,7 @@ export class CreateVersionResponse extends Message<CreateVersionResponse> {
675
698
  static readonly fields: FieldList = proto3.util.newFieldList(() => [
676
699
  { no: 1, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
677
700
  { no: 2, name: "previous_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
701
+ { no: 3, name: "is_sandboxed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
678
702
  ]);
679
703
 
680
704
  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateVersionResponse {
@@ -694,6 +718,178 @@ export class CreateVersionResponse extends Message<CreateVersionResponse> {
694
718
  }
695
719
  }
696
720
 
721
+ /**
722
+ * @generated from message liquidmetal.v1alpha1.SetVersionSandboxStatesRequest
723
+ */
724
+ export class SetVersionSandboxStatesRequest extends Message<SetVersionSandboxStatesRequest> {
725
+ /**
726
+ * @generated from field: repeated liquidmetal.v1alpha1.SetVersionSandboxStatesRequest.Version versions = 1;
727
+ */
728
+ versions: SetVersionSandboxStatesRequest_Version[] = [];
729
+
730
+ /**
731
+ * @generated from field: string user_id = 2;
732
+ */
733
+ userId = "";
734
+
735
+ /**
736
+ * @generated from field: string organization_id = 3;
737
+ */
738
+ organizationId = "";
739
+
740
+ constructor(data?: PartialMessage<SetVersionSandboxStatesRequest>) {
741
+ super();
742
+ proto3.util.initPartial(data, this);
743
+ }
744
+
745
+ static readonly runtime: typeof proto3 = proto3;
746
+ static readonly typeName = "liquidmetal.v1alpha1.SetVersionSandboxStatesRequest";
747
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
748
+ { no: 1, name: "versions", kind: "message", T: SetVersionSandboxStatesRequest_Version, repeated: true },
749
+ { no: 2, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
750
+ { no: 3, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
751
+ ]);
752
+
753
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVersionSandboxStatesRequest {
754
+ return new SetVersionSandboxStatesRequest().fromBinary(bytes, options);
755
+ }
756
+
757
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesRequest {
758
+ return new SetVersionSandboxStatesRequest().fromJson(jsonValue, options);
759
+ }
760
+
761
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesRequest {
762
+ return new SetVersionSandboxStatesRequest().fromJsonString(jsonString, options);
763
+ }
764
+
765
+ static equals(a: SetVersionSandboxStatesRequest | PlainMessage<SetVersionSandboxStatesRequest> | undefined, b: SetVersionSandboxStatesRequest | PlainMessage<SetVersionSandboxStatesRequest> | undefined): boolean {
766
+ return proto3.util.equals(SetVersionSandboxStatesRequest, a, b);
767
+ }
768
+ }
769
+
770
+ /**
771
+ * @generated from message liquidmetal.v1alpha1.SetVersionSandboxStatesRequest.Version
772
+ */
773
+ export class SetVersionSandboxStatesRequest_Version extends Message<SetVersionSandboxStatesRequest_Version> {
774
+ /**
775
+ * @generated from field: string version_id = 1;
776
+ */
777
+ versionId = "";
778
+
779
+ /**
780
+ * @generated from field: bool is_sandboxed = 2;
781
+ */
782
+ isSandboxed = false;
783
+
784
+ constructor(data?: PartialMessage<SetVersionSandboxStatesRequest_Version>) {
785
+ super();
786
+ proto3.util.initPartial(data, this);
787
+ }
788
+
789
+ static readonly runtime: typeof proto3 = proto3;
790
+ static readonly typeName = "liquidmetal.v1alpha1.SetVersionSandboxStatesRequest.Version";
791
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
792
+ { no: 1, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
793
+ { no: 2, name: "is_sandboxed", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
794
+ ]);
795
+
796
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVersionSandboxStatesRequest_Version {
797
+ return new SetVersionSandboxStatesRequest_Version().fromBinary(bytes, options);
798
+ }
799
+
800
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesRequest_Version {
801
+ return new SetVersionSandboxStatesRequest_Version().fromJson(jsonValue, options);
802
+ }
803
+
804
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesRequest_Version {
805
+ return new SetVersionSandboxStatesRequest_Version().fromJsonString(jsonString, options);
806
+ }
807
+
808
+ static equals(a: SetVersionSandboxStatesRequest_Version | PlainMessage<SetVersionSandboxStatesRequest_Version> | undefined, b: SetVersionSandboxStatesRequest_Version | PlainMessage<SetVersionSandboxStatesRequest_Version> | undefined): boolean {
809
+ return proto3.util.equals(SetVersionSandboxStatesRequest_Version, a, b);
810
+ }
811
+ }
812
+
813
+ /**
814
+ * @generated from message liquidmetal.v1alpha1.SetVersionSandboxStatesResponse
815
+ */
816
+ export class SetVersionSandboxStatesResponse extends Message<SetVersionSandboxStatesResponse> {
817
+ /**
818
+ * @generated from field: repeated liquidmetal.v1alpha1.SetVersionSandboxStatesResponse.Version success = 1;
819
+ */
820
+ success: SetVersionSandboxStatesResponse_Version[] = [];
821
+
822
+ /**
823
+ * @generated from field: repeated liquidmetal.v1alpha1.SetVersionSandboxStatesResponse.Version failure = 2;
824
+ */
825
+ failure: SetVersionSandboxStatesResponse_Version[] = [];
826
+
827
+ constructor(data?: PartialMessage<SetVersionSandboxStatesResponse>) {
828
+ super();
829
+ proto3.util.initPartial(data, this);
830
+ }
831
+
832
+ static readonly runtime: typeof proto3 = proto3;
833
+ static readonly typeName = "liquidmetal.v1alpha1.SetVersionSandboxStatesResponse";
834
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
835
+ { no: 1, name: "success", kind: "message", T: SetVersionSandboxStatesResponse_Version, repeated: true },
836
+ { no: 2, name: "failure", kind: "message", T: SetVersionSandboxStatesResponse_Version, repeated: true },
837
+ ]);
838
+
839
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVersionSandboxStatesResponse {
840
+ return new SetVersionSandboxStatesResponse().fromBinary(bytes, options);
841
+ }
842
+
843
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesResponse {
844
+ return new SetVersionSandboxStatesResponse().fromJson(jsonValue, options);
845
+ }
846
+
847
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesResponse {
848
+ return new SetVersionSandboxStatesResponse().fromJsonString(jsonString, options);
849
+ }
850
+
851
+ static equals(a: SetVersionSandboxStatesResponse | PlainMessage<SetVersionSandboxStatesResponse> | undefined, b: SetVersionSandboxStatesResponse | PlainMessage<SetVersionSandboxStatesResponse> | undefined): boolean {
852
+ return proto3.util.equals(SetVersionSandboxStatesResponse, a, b);
853
+ }
854
+ }
855
+
856
+ /**
857
+ * @generated from message liquidmetal.v1alpha1.SetVersionSandboxStatesResponse.Version
858
+ */
859
+ export class SetVersionSandboxStatesResponse_Version extends Message<SetVersionSandboxStatesResponse_Version> {
860
+ /**
861
+ * @generated from field: string version_id = 1;
862
+ */
863
+ versionId = "";
864
+
865
+ constructor(data?: PartialMessage<SetVersionSandboxStatesResponse_Version>) {
866
+ super();
867
+ proto3.util.initPartial(data, this);
868
+ }
869
+
870
+ static readonly runtime: typeof proto3 = proto3;
871
+ static readonly typeName = "liquidmetal.v1alpha1.SetVersionSandboxStatesResponse.Version";
872
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
873
+ { no: 1, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
874
+ ]);
875
+
876
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetVersionSandboxStatesResponse_Version {
877
+ return new SetVersionSandboxStatesResponse_Version().fromBinary(bytes, options);
878
+ }
879
+
880
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesResponse_Version {
881
+ return new SetVersionSandboxStatesResponse_Version().fromJson(jsonValue, options);
882
+ }
883
+
884
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetVersionSandboxStatesResponse_Version {
885
+ return new SetVersionSandboxStatesResponse_Version().fromJsonString(jsonString, options);
886
+ }
887
+
888
+ static equals(a: SetVersionSandboxStatesResponse_Version | PlainMessage<SetVersionSandboxStatesResponse_Version> | undefined, b: SetVersionSandboxStatesResponse_Version | PlainMessage<SetVersionSandboxStatesResponse_Version> | undefined): boolean {
889
+ return proto3.util.equals(SetVersionSandboxStatesResponse_Version, a, b);
890
+ }
891
+ }
892
+
697
893
  /**
698
894
  * @generated from message liquidmetal.v1alpha1.UploadBundleRequest
699
895
  */
@@ -1334,14 +1530,14 @@ export class SetApplicationActiveStatesRequest extends Message<SetApplicationAct
1334
1530
  */
1335
1531
  export class SetApplicationActiveStatesRequest_State extends Message<SetApplicationActiveStatesRequest_State> {
1336
1532
  /**
1337
- * @generated from field: string application_name = 1;
1533
+ * @generated from field: string name = 1;
1338
1534
  */
1339
- applicationName = "";
1535
+ name = "";
1340
1536
 
1341
1537
  /**
1342
- * @generated from field: string application_version_id = 2;
1538
+ * @generated from field: string version_id = 2;
1343
1539
  */
1344
- applicationVersionId = "";
1540
+ versionId = "";
1345
1541
 
1346
1542
  /**
1347
1543
  * @generated from field: bool is_active = 3;
@@ -1356,8 +1552,8 @@ export class SetApplicationActiveStatesRequest_State extends Message<SetApplicat
1356
1552
  static readonly runtime: typeof proto3 = proto3;
1357
1553
  static readonly typeName = "liquidmetal.v1alpha1.SetApplicationActiveStatesRequest.State";
1358
1554
  static readonly fields: FieldList = proto3.util.newFieldList(() => [
1359
- { no: 1, name: "application_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1360
- { no: 2, name: "application_version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1555
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1556
+ { no: 2, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1361
1557
  { no: 3, name: "is_active", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1362
1558
  ]);
1363
1559
 
@@ -1464,6 +1660,190 @@ export class SetApplicationActiveStatesResponse_Application extends Message<SetA
1464
1660
  }
1465
1661
  }
1466
1662
 
1663
+ /**
1664
+ * @generated from message liquidmetal.v1alpha1.SetApplicationManifestsRequest
1665
+ */
1666
+ export class SetApplicationManifestsRequest extends Message<SetApplicationManifestsRequest> {
1667
+ /**
1668
+ * @generated from field: repeated liquidmetal.v1alpha1.SetApplicationManifestsRequest.Manifest manifests = 1;
1669
+ */
1670
+ manifests: SetApplicationManifestsRequest_Manifest[] = [];
1671
+
1672
+ /**
1673
+ * @generated from field: string user_id = 2;
1674
+ */
1675
+ userId = "";
1676
+
1677
+ /**
1678
+ * @generated from field: string organization_id = 3;
1679
+ */
1680
+ organizationId = "";
1681
+
1682
+ constructor(data?: PartialMessage<SetApplicationManifestsRequest>) {
1683
+ super();
1684
+ proto3.util.initPartial(data, this);
1685
+ }
1686
+
1687
+ static readonly runtime: typeof proto3 = proto3;
1688
+ static readonly typeName = "liquidmetal.v1alpha1.SetApplicationManifestsRequest";
1689
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
1690
+ { no: 1, name: "manifests", kind: "message", T: SetApplicationManifestsRequest_Manifest, repeated: true },
1691
+ { no: 2, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1692
+ { no: 3, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1693
+ ]);
1694
+
1695
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetApplicationManifestsRequest {
1696
+ return new SetApplicationManifestsRequest().fromBinary(bytes, options);
1697
+ }
1698
+
1699
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetApplicationManifestsRequest {
1700
+ return new SetApplicationManifestsRequest().fromJson(jsonValue, options);
1701
+ }
1702
+
1703
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetApplicationManifestsRequest {
1704
+ return new SetApplicationManifestsRequest().fromJsonString(jsonString, options);
1705
+ }
1706
+
1707
+ static equals(a: SetApplicationManifestsRequest | PlainMessage<SetApplicationManifestsRequest> | undefined, b: SetApplicationManifestsRequest | PlainMessage<SetApplicationManifestsRequest> | undefined): boolean {
1708
+ return proto3.util.equals(SetApplicationManifestsRequest, a, b);
1709
+ }
1710
+ }
1711
+
1712
+ /**
1713
+ * @generated from message liquidmetal.v1alpha1.SetApplicationManifestsRequest.Manifest
1714
+ */
1715
+ export class SetApplicationManifestsRequest_Manifest extends Message<SetApplicationManifestsRequest_Manifest> {
1716
+ /**
1717
+ * @generated from field: string name = 1;
1718
+ */
1719
+ name = "";
1720
+
1721
+ /**
1722
+ * @generated from field: string version_id = 2;
1723
+ */
1724
+ versionId = "";
1725
+
1726
+ /**
1727
+ * @generated from field: string manifest = 3;
1728
+ */
1729
+ manifest = "";
1730
+
1731
+ constructor(data?: PartialMessage<SetApplicationManifestsRequest_Manifest>) {
1732
+ super();
1733
+ proto3.util.initPartial(data, this);
1734
+ }
1735
+
1736
+ static readonly runtime: typeof proto3 = proto3;
1737
+ static readonly typeName = "liquidmetal.v1alpha1.SetApplicationManifestsRequest.Manifest";
1738
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
1739
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1740
+ { no: 2, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1741
+ { no: 3, name: "manifest", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1742
+ ]);
1743
+
1744
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetApplicationManifestsRequest_Manifest {
1745
+ return new SetApplicationManifestsRequest_Manifest().fromBinary(bytes, options);
1746
+ }
1747
+
1748
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetApplicationManifestsRequest_Manifest {
1749
+ return new SetApplicationManifestsRequest_Manifest().fromJson(jsonValue, options);
1750
+ }
1751
+
1752
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetApplicationManifestsRequest_Manifest {
1753
+ return new SetApplicationManifestsRequest_Manifest().fromJsonString(jsonString, options);
1754
+ }
1755
+
1756
+ static equals(a: SetApplicationManifestsRequest_Manifest | PlainMessage<SetApplicationManifestsRequest_Manifest> | undefined, b: SetApplicationManifestsRequest_Manifest | PlainMessage<SetApplicationManifestsRequest_Manifest> | undefined): boolean {
1757
+ return proto3.util.equals(SetApplicationManifestsRequest_Manifest, a, b);
1758
+ }
1759
+ }
1760
+
1761
+ /**
1762
+ * @generated from message liquidmetal.v1alpha1.SetApplicationManifestsResponse
1763
+ */
1764
+ export class SetApplicationManifestsResponse extends Message<SetApplicationManifestsResponse> {
1765
+ /**
1766
+ * @generated from field: repeated liquidmetal.v1alpha1.SetApplicationManifestsResponse.Application success = 1;
1767
+ */
1768
+ success: SetApplicationManifestsResponse_Application[] = [];
1769
+
1770
+ /**
1771
+ * @generated from field: repeated liquidmetal.v1alpha1.SetApplicationManifestsResponse.Application failure = 2;
1772
+ */
1773
+ failure: SetApplicationManifestsResponse_Application[] = [];
1774
+
1775
+ constructor(data?: PartialMessage<SetApplicationManifestsResponse>) {
1776
+ super();
1777
+ proto3.util.initPartial(data, this);
1778
+ }
1779
+
1780
+ static readonly runtime: typeof proto3 = proto3;
1781
+ static readonly typeName = "liquidmetal.v1alpha1.SetApplicationManifestsResponse";
1782
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
1783
+ { no: 1, name: "success", kind: "message", T: SetApplicationManifestsResponse_Application, repeated: true },
1784
+ { no: 2, name: "failure", kind: "message", T: SetApplicationManifestsResponse_Application, repeated: true },
1785
+ ]);
1786
+
1787
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetApplicationManifestsResponse {
1788
+ return new SetApplicationManifestsResponse().fromBinary(bytes, options);
1789
+ }
1790
+
1791
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetApplicationManifestsResponse {
1792
+ return new SetApplicationManifestsResponse().fromJson(jsonValue, options);
1793
+ }
1794
+
1795
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetApplicationManifestsResponse {
1796
+ return new SetApplicationManifestsResponse().fromJsonString(jsonString, options);
1797
+ }
1798
+
1799
+ static equals(a: SetApplicationManifestsResponse | PlainMessage<SetApplicationManifestsResponse> | undefined, b: SetApplicationManifestsResponse | PlainMessage<SetApplicationManifestsResponse> | undefined): boolean {
1800
+ return proto3.util.equals(SetApplicationManifestsResponse, a, b);
1801
+ }
1802
+ }
1803
+
1804
+ /**
1805
+ * @generated from message liquidmetal.v1alpha1.SetApplicationManifestsResponse.Application
1806
+ */
1807
+ export class SetApplicationManifestsResponse_Application extends Message<SetApplicationManifestsResponse_Application> {
1808
+ /**
1809
+ * @generated from field: string name = 1;
1810
+ */
1811
+ name = "";
1812
+
1813
+ /**
1814
+ * @generated from field: string version_id = 2;
1815
+ */
1816
+ versionId = "";
1817
+
1818
+ constructor(data?: PartialMessage<SetApplicationManifestsResponse_Application>) {
1819
+ super();
1820
+ proto3.util.initPartial(data, this);
1821
+ }
1822
+
1823
+ static readonly runtime: typeof proto3 = proto3;
1824
+ static readonly typeName = "liquidmetal.v1alpha1.SetApplicationManifestsResponse.Application";
1825
+ static readonly fields: FieldList = proto3.util.newFieldList(() => [
1826
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1827
+ { no: 2, name: "version_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1828
+ ]);
1829
+
1830
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetApplicationManifestsResponse_Application {
1831
+ return new SetApplicationManifestsResponse_Application().fromBinary(bytes, options);
1832
+ }
1833
+
1834
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetApplicationManifestsResponse_Application {
1835
+ return new SetApplicationManifestsResponse_Application().fromJson(jsonValue, options);
1836
+ }
1837
+
1838
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetApplicationManifestsResponse_Application {
1839
+ return new SetApplicationManifestsResponse_Application().fromJsonString(jsonString, options);
1840
+ }
1841
+
1842
+ static equals(a: SetApplicationManifestsResponse_Application | PlainMessage<SetApplicationManifestsResponse_Application> | undefined, b: SetApplicationManifestsResponse_Application | PlainMessage<SetApplicationManifestsResponse_Application> | undefined): boolean {
1843
+ return proto3.util.equals(SetApplicationManifestsResponse_Application, a, b);
1844
+ }
1845
+ }
1846
+
1467
1847
  /**
1468
1848
  * @generated from message liquidmetal.v1alpha1.DeleteApplicationsRequest
1469
1849
  */
@@ -0,0 +1,32 @@
1
+ // @generated by protoc-gen-connect-es v1.4.0 with parameter "target=ts,import_extension=.js"
2
+ // @generated from file liquidmetal/v1alpha1/rainbow_public.proto (package liquidmetal.v1alpha1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import { TailRequest, TailResponse } from "./rainbow_public_pb.js";
7
+ import { MethodKind } from "@bufbuild/protobuf";
8
+
9
+ /**
10
+ * RainbowPublicService represents logic implemented centrally by rainbow
11
+ * service that may be accessed publicly.
12
+ *
13
+ * @generated from service liquidmetal.v1alpha1.RainbowPublicService
14
+ */
15
+ export const RainbowPublicService = {
16
+ typeName: "liquidmetal.v1alpha1.RainbowPublicService",
17
+ methods: {
18
+ /**
19
+ * Tail is able to return a websocket url which will stream logs from active
20
+ * applications.
21
+ *
22
+ * @generated from rpc liquidmetal.v1alpha1.RainbowPublicService.Tail
23
+ */
24
+ tail: {
25
+ name: "Tail",
26
+ I: TailRequest,
27
+ O: TailResponse,
28
+ kind: MethodKind.Unary,
29
+ },
30
+ }
31
+ } as const;
32
+