@sentio/runtime 4.0.0-rc.1 → 4.0.0-rc.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.
- package/lib/chunk-OLNJTVP4.js +15167 -0
- package/lib/chunk-OLNJTVP4.js.map +1 -0
- package/lib/chunk-VVWSRCNO.js +4988 -0
- package/lib/chunk-VVWSRCNO.js.map +1 -0
- package/lib/index.d.ts +1407 -566
- package/lib/index.js +21290 -40
- package/lib/index.js.map +1 -1
- package/lib/plugin-D-rx1WCp.d.ts +108 -0
- package/lib/processor-runner.js +25516 -525
- package/lib/processor-runner.js.map +1 -1
- package/package.json +1 -1
- package/src/action-server.ts +3 -2
- package/src/db-context.ts +58 -45
- package/src/full-service.ts +18 -400
- package/src/gen/google/type/money_pb.ts +41 -0
- package/src/gen/processor/protos/processor_pb.ts +3855 -0
- package/src/gen/service/common/protos/common_pb.ts +4456 -0
- package/src/global-config.ts +3 -2
- package/src/index.ts +1 -1
- package/src/plugin.ts +26 -16
- package/src/processor-runner.ts +25 -35
- package/src/service-v3.ts +57 -59
- package/src/utils.ts +29 -12
- package/lib/chunk-GUQLAUIA.js +0 -67172
- package/lib/chunk-GUQLAUIA.js.map +0 -1
- package/lib/chunk-KOMGWSWU.js +0 -25311
- package/lib/chunk-KOMGWSWU.js.map +0 -1
- package/lib/processor-StqZovMW.d.ts +0 -554
- package/src/gen/google/protobuf/empty.ts +0 -71
- package/src/gen/google/protobuf/struct.ts +0 -561
- package/src/gen/google/protobuf/timestamp.ts +0 -113
- package/src/gen/google/type/money.ts +0 -134
- package/src/gen/processor/protos/processor.ts +0 -15354
- package/src/gen/service/common/protos/common.ts +0 -16525
- package/src/service.ts +0 -549
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts,import_extension=js,keep_empty_files=true"
|
|
2
|
+
// @generated from file google/type/money.proto (package google.type, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
7
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file google/type/money.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_google_type_money: GenFile = /*@__PURE__*/
|
|
13
|
+
fileDesc("Chdnb29nbGUvdHlwZS9tb25leS5wcm90bxILZ29vZ2xlLnR5cGUiPAoFTW9uZXkSFQoNY3VycmVuY3lfY29kZRgBIAEoCRINCgV1bml0cxgCIAEoAxINCgVuYW5vcxgDIAEoBUJdCg9jb20uZ29vZ2xlLnR5cGVCCk1vbmV5UHJvdG9QAVo2Z29vZ2xlLmdvbGFuZy5vcmcvZ2VucHJvdG8vZ29vZ2xlYXBpcy90eXBlL21vbmV5O21vbmV5ogIDR1RQYgZwcm90bzM");
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* @generated from message google.type.Money
|
|
17
|
+
*/
|
|
18
|
+
export type Money = Message<"google.type.Money"> & {
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: string currency_code = 1;
|
|
21
|
+
*/
|
|
22
|
+
currencyCode: string;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: int64 units = 2;
|
|
26
|
+
*/
|
|
27
|
+
units: bigint;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @generated from field: int32 nanos = 3;
|
|
31
|
+
*/
|
|
32
|
+
nanos: number;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message google.type.Money.
|
|
37
|
+
* Use `create(MoneySchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export const MoneySchema: GenMessage<Money> = /*@__PURE__*/
|
|
40
|
+
messageDesc(file_google_type_money, 0);
|
|
41
|
+
|