@contractspec/lib.contracts 0.0.0-canary-20260114030712 → 0.0.0-canary-20260119224015
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/docs/tech/telemetry-ingest.docblock.js +10 -0
- package/dist/examples/schema.d.ts +10 -10
- package/dist/integrations/openbanking/contracts/balances.d.ts +34 -34
- package/dist/integrations/openbanking/models.d.ts +55 -55
- package/dist/integrations/operations.d.ts +102 -102
- package/dist/knowledge/operations.d.ts +66 -66
- package/package.json +5 -5
|
@@ -79,6 +79,16 @@ The endpoint requires \`POSTHOG_PROJECT_KEY\` environment variable to be set. If
|
|
|
79
79
|
|
|
80
80
|
## Events
|
|
81
81
|
|
|
82
|
+
### OSS Adoption Funnel
|
|
83
|
+
|
|
84
|
+
| Event | Description | Properties |
|
|
85
|
+
|-------|-------------|------------|
|
|
86
|
+
| \`cta_install_click\` | Clicked Install OSS CTA | \`surface\` |
|
|
87
|
+
| \`cta_studio_click\` | Clicked Studio waitlist CTA | \`surface\`, \`variant\` |
|
|
88
|
+
| \`docs_quickstart_view\` | Entered quickstart docs path | \`surface\`, \`destination\` |
|
|
89
|
+
| \`copy_command_click\` | Copied a command block | \`surface\`, \`language\`, \`filename\`, \`packageManager\` |
|
|
90
|
+
| \`example_repo_open\` | Selected a template/example | \`surface\`, \`templateId\`, \`source\` |
|
|
91
|
+
|
|
82
92
|
### Extension Events
|
|
83
93
|
|
|
84
94
|
| Event | Description | Properties |
|
|
@@ -3,14 +3,14 @@ import { z as z$1 } from "zod";
|
|
|
3
3
|
|
|
4
4
|
//#region src/examples/schema.d.ts
|
|
5
5
|
declare const ExampleKindSchema: z$1.ZodEnum<{
|
|
6
|
-
|
|
6
|
+
library: "library";
|
|
7
7
|
workflow: "workflow";
|
|
8
|
-
integration: "integration";
|
|
9
8
|
knowledge: "knowledge";
|
|
9
|
+
integration: "integration";
|
|
10
|
+
template: "template";
|
|
10
11
|
blueprint: "blueprint";
|
|
11
12
|
ui: "ui";
|
|
12
13
|
script: "script";
|
|
13
|
-
library: "library";
|
|
14
14
|
}>;
|
|
15
15
|
declare const ExampleVisibilitySchema: z$1.ZodEnum<{
|
|
16
16
|
experimental: "experimental";
|
|
@@ -104,14 +104,14 @@ declare const ExampleMetaSchema: z$1.ZodObject<{
|
|
|
104
104
|
tags: z$1.ZodArray<z$1.ZodString>;
|
|
105
105
|
docId: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
106
106
|
kind: z$1.ZodEnum<{
|
|
107
|
-
|
|
107
|
+
library: "library";
|
|
108
108
|
workflow: "workflow";
|
|
109
|
-
integration: "integration";
|
|
110
109
|
knowledge: "knowledge";
|
|
110
|
+
integration: "integration";
|
|
111
|
+
template: "template";
|
|
111
112
|
blueprint: "blueprint";
|
|
112
113
|
ui: "ui";
|
|
113
114
|
script: "script";
|
|
114
|
-
library: "library";
|
|
115
115
|
}>;
|
|
116
116
|
visibility: z$1.ZodEnum<{
|
|
117
117
|
experimental: "experimental";
|
|
@@ -152,14 +152,14 @@ declare const ExampleSpecSchema: z$1.ZodObject<{
|
|
|
152
152
|
tags: z$1.ZodArray<z$1.ZodString>;
|
|
153
153
|
docId: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
154
154
|
kind: z$1.ZodEnum<{
|
|
155
|
-
|
|
155
|
+
library: "library";
|
|
156
156
|
workflow: "workflow";
|
|
157
|
-
integration: "integration";
|
|
158
157
|
knowledge: "knowledge";
|
|
158
|
+
integration: "integration";
|
|
159
|
+
template: "template";
|
|
159
160
|
blueprint: "blueprint";
|
|
160
161
|
ui: "ui";
|
|
161
162
|
script: "script";
|
|
162
|
-
library: "library";
|
|
163
163
|
}>;
|
|
164
164
|
visibility: z$1.ZodEnum<{
|
|
165
165
|
experimental: "experimental";
|
|
@@ -224,7 +224,7 @@ declare function safeParseExampleSpec(data: unknown): z$1.ZodSafeParseResult<{
|
|
|
224
224
|
stability: "deprecated" | "idea" | "in_creation" | "experimental" | "beta" | "stable";
|
|
225
225
|
owners: string[];
|
|
226
226
|
tags: string[];
|
|
227
|
-
kind: "
|
|
227
|
+
kind: "library" | "workflow" | "knowledge" | "integration" | "template" | "blueprint" | "ui" | "script";
|
|
228
228
|
visibility: "experimental" | "public" | "internal";
|
|
229
229
|
title?: string | undefined;
|
|
230
230
|
domain?: string | undefined;
|
|
@@ -2,21 +2,21 @@ import { AnyOperationSpec, OperationSpec } from "../../../operations/operation.j
|
|
|
2
2
|
import { OperationSpecRegistry } from "../../../operations/registry.js";
|
|
3
3
|
import "../../../operations/index.js";
|
|
4
4
|
import "../../../index.js";
|
|
5
|
-
import * as
|
|
5
|
+
import * as _contractspec_lib_schema155 from "@contractspec/lib.schema";
|
|
6
6
|
import { SchemaModel } from "@contractspec/lib.schema";
|
|
7
7
|
|
|
8
8
|
//#region src/integrations/openbanking/contracts/balances.d.ts
|
|
9
9
|
declare const OpenBankingGetBalances: OperationSpec<SchemaModel<{
|
|
10
10
|
tenantId: {
|
|
11
|
-
type:
|
|
11
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
accountId: {
|
|
15
|
-
type:
|
|
15
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
balanceTypes: {
|
|
19
|
-
type:
|
|
19
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
20
20
|
isArray: true;
|
|
21
21
|
isOptional: true;
|
|
22
22
|
};
|
|
@@ -24,47 +24,47 @@ declare const OpenBankingGetBalances: OperationSpec<SchemaModel<{
|
|
|
24
24
|
balances: {
|
|
25
25
|
type: SchemaModel<{
|
|
26
26
|
id: {
|
|
27
|
-
type:
|
|
27
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
accountId: {
|
|
31
|
-
type:
|
|
31
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
tenantId: {
|
|
35
|
-
type:
|
|
35
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
connectionId: {
|
|
39
|
-
type:
|
|
39
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
balanceType: {
|
|
43
|
-
type:
|
|
43
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
currentBalance: {
|
|
47
|
-
type:
|
|
47
|
+
type: _contractspec_lib_schema155.FieldType<number, number>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
availableBalance: {
|
|
51
|
-
type:
|
|
51
|
+
type: _contractspec_lib_schema155.FieldType<number, number>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
currency: {
|
|
55
|
-
type:
|
|
55
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
lastUpdatedAt: {
|
|
59
|
-
type:
|
|
59
|
+
type: _contractspec_lib_schema155.FieldType<Date, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
createdAt: {
|
|
63
|
-
type:
|
|
63
|
+
type: _contractspec_lib_schema155.FieldType<Date, string>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
metadata: {
|
|
67
|
-
type:
|
|
67
|
+
type: _contractspec_lib_schema155.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
68
68
|
isOptional: true;
|
|
69
69
|
};
|
|
70
70
|
}>;
|
|
@@ -72,77 +72,77 @@ declare const OpenBankingGetBalances: OperationSpec<SchemaModel<{
|
|
|
72
72
|
isArray: true;
|
|
73
73
|
};
|
|
74
74
|
asOf: {
|
|
75
|
-
type:
|
|
75
|
+
type: _contractspec_lib_schema155.FieldType<Date, string>;
|
|
76
76
|
isOptional: true;
|
|
77
77
|
};
|
|
78
78
|
}>, undefined>;
|
|
79
79
|
declare const OpenBankingRefreshBalances: OperationSpec<SchemaModel<{
|
|
80
80
|
tenantId: {
|
|
81
|
-
type:
|
|
81
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
accountId: {
|
|
85
|
-
type:
|
|
85
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
connectionId: {
|
|
89
|
-
type:
|
|
89
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
90
90
|
isOptional: true;
|
|
91
91
|
};
|
|
92
92
|
balanceTypes: {
|
|
93
|
-
type:
|
|
93
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
94
94
|
isArray: true;
|
|
95
95
|
isOptional: true;
|
|
96
96
|
};
|
|
97
97
|
forceRefresh: {
|
|
98
|
-
type:
|
|
98
|
+
type: _contractspec_lib_schema155.FieldType<boolean, boolean>;
|
|
99
99
|
isOptional: true;
|
|
100
100
|
};
|
|
101
101
|
}>, SchemaModel<{
|
|
102
102
|
balances: {
|
|
103
103
|
type: SchemaModel<{
|
|
104
104
|
id: {
|
|
105
|
-
type:
|
|
105
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
accountId: {
|
|
109
|
-
type:
|
|
109
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
};
|
|
112
112
|
tenantId: {
|
|
113
|
-
type:
|
|
113
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
114
114
|
isOptional: false;
|
|
115
115
|
};
|
|
116
116
|
connectionId: {
|
|
117
|
-
type:
|
|
117
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
118
118
|
isOptional: false;
|
|
119
119
|
};
|
|
120
120
|
balanceType: {
|
|
121
|
-
type:
|
|
121
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
122
122
|
isOptional: false;
|
|
123
123
|
};
|
|
124
124
|
currentBalance: {
|
|
125
|
-
type:
|
|
125
|
+
type: _contractspec_lib_schema155.FieldType<number, number>;
|
|
126
126
|
isOptional: false;
|
|
127
127
|
};
|
|
128
128
|
availableBalance: {
|
|
129
|
-
type:
|
|
129
|
+
type: _contractspec_lib_schema155.FieldType<number, number>;
|
|
130
130
|
isOptional: true;
|
|
131
131
|
};
|
|
132
132
|
currency: {
|
|
133
|
-
type:
|
|
133
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
134
134
|
isOptional: false;
|
|
135
135
|
};
|
|
136
136
|
lastUpdatedAt: {
|
|
137
|
-
type:
|
|
137
|
+
type: _contractspec_lib_schema155.FieldType<Date, string>;
|
|
138
138
|
isOptional: false;
|
|
139
139
|
};
|
|
140
140
|
createdAt: {
|
|
141
|
-
type:
|
|
141
|
+
type: _contractspec_lib_schema155.FieldType<Date, string>;
|
|
142
142
|
isOptional: false;
|
|
143
143
|
};
|
|
144
144
|
metadata: {
|
|
145
|
-
type:
|
|
145
|
+
type: _contractspec_lib_schema155.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
146
146
|
isOptional: true;
|
|
147
147
|
};
|
|
148
148
|
}>;
|
|
@@ -150,11 +150,11 @@ declare const OpenBankingRefreshBalances: OperationSpec<SchemaModel<{
|
|
|
150
150
|
isArray: true;
|
|
151
151
|
};
|
|
152
152
|
refreshedAt: {
|
|
153
|
-
type:
|
|
153
|
+
type: _contractspec_lib_schema155.FieldType<Date, string>;
|
|
154
154
|
isOptional: false;
|
|
155
155
|
};
|
|
156
156
|
errors: {
|
|
157
|
-
type:
|
|
157
|
+
type: _contractspec_lib_schema155.FieldType<string, string>;
|
|
158
158
|
isArray: true;
|
|
159
159
|
isOptional: true;
|
|
160
160
|
};
|
|
@@ -1,226 +1,226 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema354 from "@contractspec/lib.schema";
|
|
2
2
|
import { SchemaModel } from "@contractspec/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/integrations/openbanking/models.d.ts
|
|
5
5
|
declare const BankAccountRecord: SchemaModel<{
|
|
6
6
|
id: {
|
|
7
|
-
type:
|
|
7
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
tenantId: {
|
|
11
|
-
type:
|
|
11
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
userId: {
|
|
15
|
-
type:
|
|
15
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
connectionId: {
|
|
19
|
-
type:
|
|
19
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
externalId: {
|
|
23
|
-
type:
|
|
23
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
institutionId: {
|
|
27
|
-
type:
|
|
27
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
institutionName: {
|
|
31
|
-
type:
|
|
31
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
institutionLogoUrl: {
|
|
35
|
-
type:
|
|
35
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
36
36
|
isOptional: true;
|
|
37
37
|
};
|
|
38
38
|
iban: {
|
|
39
|
-
type:
|
|
39
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
40
40
|
isOptional: true;
|
|
41
41
|
};
|
|
42
42
|
bic: {
|
|
43
|
-
type:
|
|
43
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
44
44
|
isOptional: true;
|
|
45
45
|
};
|
|
46
46
|
accountType: {
|
|
47
|
-
type:
|
|
47
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
currency: {
|
|
51
|
-
type:
|
|
51
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
displayName: {
|
|
55
|
-
type:
|
|
55
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
accountNumberMasked: {
|
|
59
|
-
type:
|
|
59
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
60
60
|
isOptional: true;
|
|
61
61
|
};
|
|
62
62
|
productCode: {
|
|
63
|
-
type:
|
|
63
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
balance: {
|
|
67
|
-
type:
|
|
67
|
+
type: _contractspec_lib_schema354.FieldType<number, number>;
|
|
68
68
|
isOptional: true;
|
|
69
69
|
};
|
|
70
70
|
availableBalance: {
|
|
71
|
-
type:
|
|
71
|
+
type: _contractspec_lib_schema354.FieldType<number, number>;
|
|
72
72
|
isOptional: true;
|
|
73
73
|
};
|
|
74
74
|
lastSyncedAt: {
|
|
75
|
-
type:
|
|
75
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
76
76
|
isOptional: false;
|
|
77
77
|
};
|
|
78
78
|
createdAt: {
|
|
79
|
-
type:
|
|
79
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
80
80
|
isOptional: false;
|
|
81
81
|
};
|
|
82
82
|
updatedAt: {
|
|
83
|
-
type:
|
|
83
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
84
84
|
isOptional: false;
|
|
85
85
|
};
|
|
86
86
|
metadata: {
|
|
87
|
-
type:
|
|
87
|
+
type: _contractspec_lib_schema354.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
88
88
|
isOptional: true;
|
|
89
89
|
};
|
|
90
90
|
}>;
|
|
91
91
|
declare const BankTransactionRecord: SchemaModel<{
|
|
92
92
|
id: {
|
|
93
|
-
type:
|
|
93
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
accountId: {
|
|
97
|
-
type:
|
|
97
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
98
98
|
isOptional: false;
|
|
99
99
|
};
|
|
100
100
|
tenantId: {
|
|
101
|
-
type:
|
|
101
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
102
102
|
isOptional: false;
|
|
103
103
|
};
|
|
104
104
|
connectionId: {
|
|
105
|
-
type:
|
|
105
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
externalId: {
|
|
109
|
-
type:
|
|
109
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
};
|
|
112
112
|
amount: {
|
|
113
|
-
type:
|
|
113
|
+
type: _contractspec_lib_schema354.FieldType<number, number>;
|
|
114
114
|
isOptional: false;
|
|
115
115
|
};
|
|
116
116
|
currency: {
|
|
117
|
-
type:
|
|
117
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
118
118
|
isOptional: false;
|
|
119
119
|
};
|
|
120
120
|
date: {
|
|
121
|
-
type:
|
|
121
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
122
122
|
isOptional: false;
|
|
123
123
|
};
|
|
124
124
|
bookingDate: {
|
|
125
|
-
type:
|
|
125
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
126
126
|
isOptional: true;
|
|
127
127
|
};
|
|
128
128
|
valueDate: {
|
|
129
|
-
type:
|
|
129
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
130
130
|
isOptional: true;
|
|
131
131
|
};
|
|
132
132
|
description: {
|
|
133
|
-
type:
|
|
133
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
134
134
|
isOptional: true;
|
|
135
135
|
};
|
|
136
136
|
counterpartyName: {
|
|
137
|
-
type:
|
|
137
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
138
138
|
isOptional: true;
|
|
139
139
|
};
|
|
140
140
|
counterpartyAccount: {
|
|
141
|
-
type:
|
|
141
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
142
142
|
isOptional: true;
|
|
143
143
|
};
|
|
144
144
|
merchantCategoryCode: {
|
|
145
|
-
type:
|
|
145
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
146
146
|
isOptional: true;
|
|
147
147
|
};
|
|
148
148
|
rawCategory: {
|
|
149
|
-
type:
|
|
149
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
150
150
|
isOptional: true;
|
|
151
151
|
};
|
|
152
152
|
standardizedCategory: {
|
|
153
|
-
type:
|
|
153
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
154
154
|
isOptional: true;
|
|
155
155
|
};
|
|
156
156
|
transactionType: {
|
|
157
|
-
type:
|
|
157
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
158
158
|
isOptional: false;
|
|
159
159
|
};
|
|
160
160
|
status: {
|
|
161
|
-
type:
|
|
161
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
162
162
|
isOptional: false;
|
|
163
163
|
};
|
|
164
164
|
runningBalance: {
|
|
165
|
-
type:
|
|
165
|
+
type: _contractspec_lib_schema354.FieldType<number, number>;
|
|
166
166
|
isOptional: true;
|
|
167
167
|
};
|
|
168
168
|
metadata: {
|
|
169
|
-
type:
|
|
169
|
+
type: _contractspec_lib_schema354.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
170
170
|
isOptional: true;
|
|
171
171
|
};
|
|
172
172
|
createdAt: {
|
|
173
|
-
type:
|
|
173
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
174
174
|
isOptional: false;
|
|
175
175
|
};
|
|
176
176
|
updatedAt: {
|
|
177
|
-
type:
|
|
177
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
178
178
|
isOptional: false;
|
|
179
179
|
};
|
|
180
180
|
}>;
|
|
181
181
|
declare const AccountBalanceRecord: SchemaModel<{
|
|
182
182
|
id: {
|
|
183
|
-
type:
|
|
183
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
184
184
|
isOptional: false;
|
|
185
185
|
};
|
|
186
186
|
accountId: {
|
|
187
|
-
type:
|
|
187
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
188
188
|
isOptional: false;
|
|
189
189
|
};
|
|
190
190
|
tenantId: {
|
|
191
|
-
type:
|
|
191
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
192
192
|
isOptional: false;
|
|
193
193
|
};
|
|
194
194
|
connectionId: {
|
|
195
|
-
type:
|
|
195
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
196
196
|
isOptional: false;
|
|
197
197
|
};
|
|
198
198
|
balanceType: {
|
|
199
|
-
type:
|
|
199
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
200
200
|
isOptional: false;
|
|
201
201
|
};
|
|
202
202
|
currentBalance: {
|
|
203
|
-
type:
|
|
203
|
+
type: _contractspec_lib_schema354.FieldType<number, number>;
|
|
204
204
|
isOptional: false;
|
|
205
205
|
};
|
|
206
206
|
availableBalance: {
|
|
207
|
-
type:
|
|
207
|
+
type: _contractspec_lib_schema354.FieldType<number, number>;
|
|
208
208
|
isOptional: true;
|
|
209
209
|
};
|
|
210
210
|
currency: {
|
|
211
|
-
type:
|
|
211
|
+
type: _contractspec_lib_schema354.FieldType<string, string>;
|
|
212
212
|
isOptional: false;
|
|
213
213
|
};
|
|
214
214
|
lastUpdatedAt: {
|
|
215
|
-
type:
|
|
215
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
216
216
|
isOptional: false;
|
|
217
217
|
};
|
|
218
218
|
createdAt: {
|
|
219
|
-
type:
|
|
219
|
+
type: _contractspec_lib_schema354.FieldType<Date, string>;
|
|
220
220
|
isOptional: false;
|
|
221
221
|
};
|
|
222
222
|
metadata: {
|
|
223
|
-
type:
|
|
223
|
+
type: _contractspec_lib_schema354.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
224
224
|
isOptional: true;
|
|
225
225
|
};
|
|
226
226
|
}>;
|