@odatano/core 0.3.2 → 0.3.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/@cds-models/CardanoODataService/index.d.ts +1969 -0
- package/@cds-models/CardanoODataService/index.d.ts.map +1 -0
- package/@cds-models/CardanoODataService/index.js +329 -0
- package/@cds-models/CardanoODataService/index.js.map +1 -0
- package/@cds-models/CardanoODataService/index.ts +646 -0
- package/@cds-models/CardanoTransactionService/index.d.ts +1860 -0
- package/@cds-models/CardanoTransactionService/index.d.ts.map +1 -0
- package/@cds-models/CardanoTransactionService/index.js +328 -0
- package/@cds-models/CardanoTransactionService/index.js.map +1 -0
- package/@cds-models/CardanoTransactionService/index.ts +602 -0
- package/@cds-models/CardanoWatcherAdminService/index.js +113 -0
- package/@cds-models/CardanoWatcherAdminService/index.js.map +1 -0
- package/@cds-models/CardanoWatcherAdminService/index.ts +263 -0
- package/@cds-models/_/index.d.ts +66 -0
- package/@cds-models/_/index.d.ts.map +1 -0
- package/@cds-models/_/index.js +42 -0
- package/@cds-models/_/index.js.map +1 -0
- package/@cds-models/_/index.ts +96 -0
- package/@cds-models/cds/outbox/index.js +8 -0
- package/@cds-models/cds/outbox/index.js.map +1 -0
- package/@cds-models/cds/outbox/index.ts +27 -0
- package/@cds-models/cds/xt/MTXServices/index.js +8 -0
- package/@cds-models/cds/xt/MTXServices/index.js.map +1 -0
- package/@cds-models/cds/xt/MTXServices/index.ts +4 -0
- package/@cds-models/index.d.ts +168 -0
- package/@cds-models/index.d.ts.map +1 -0
- package/@cds-models/index.js +113 -0
- package/@cds-models/index.js.map +1 -0
- package/@cds-models/index.ts +84 -0
- package/@cds-models/odatano/cardano/index.d.ts +2882 -0
- package/@cds-models/odatano/cardano/index.d.ts.map +1 -0
- package/@cds-models/odatano/cardano/index.js +554 -0
- package/@cds-models/odatano/cardano/index.js.map +1 -0
- package/@cds-models/odatano/cardano/index.ts +802 -0
- package/@cds-models/odatano/reeve/index.js +83 -0
- package/@cds-models/odatano/reeve/index.js.map +1 -0
- package/@cds-models/odatano/reeve/index.ts +57 -0
- package/@cds-models/odatano/transactions/index.js +56 -0
- package/@cds-models/odatano/transactions/index.js.map +1 -0
- package/@cds-models/odatano/transactions/index.ts +18 -0
- package/@cds-models/odatano/watch/index.js +120 -0
- package/@cds-models/odatano/watch/index.js.map +1 -0
- package/@cds-models/odatano/watch/index.ts +110 -0
- package/@cds-models/sap/common/index.d.ts +678 -0
- package/@cds-models/sap/common/index.d.ts.map +1 -0
- package/@cds-models/sap/common/index.js +270 -0
- package/@cds-models/sap/common/index.js.map +1 -0
- package/@cds-models/sap/common/index.ts +249 -0
- package/package.json +1 -1
- package/src/plugin.d.ts.map +1 -1
- package/src/plugin.js +5 -0
- package/src/plugin.js.map +1 -1
|
@@ -0,0 +1,678 @@
|
|
|
1
|
+
import * as __ from './../../_';
|
|
2
|
+
import * as _ from './../..';
|
|
3
|
+
export type Locale = string;
|
|
4
|
+
export declare function _CodeListAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
5
|
+
new (...args: any[]): {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
descr?: string | null;
|
|
8
|
+
};
|
|
9
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
10
|
+
readonly keys: __.KeysOf<{
|
|
11
|
+
name?: string | null;
|
|
12
|
+
descr?: string | null;
|
|
13
|
+
}>;
|
|
14
|
+
readonly elements: __.ElementsOf<{
|
|
15
|
+
name?: string | null;
|
|
16
|
+
descr?: string | null;
|
|
17
|
+
}>;
|
|
18
|
+
readonly actions: globalThis.Record<never, never>;
|
|
19
|
+
} & TBase;
|
|
20
|
+
declare const CodeList_base: {
|
|
21
|
+
new (...args: any[]): {
|
|
22
|
+
name?: string | null;
|
|
23
|
+
descr?: string | null;
|
|
24
|
+
};
|
|
25
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
26
|
+
readonly keys: __.KeysOf<{
|
|
27
|
+
name?: string | null;
|
|
28
|
+
descr?: string | null;
|
|
29
|
+
}>;
|
|
30
|
+
readonly elements: __.ElementsOf<{
|
|
31
|
+
name?: string | null;
|
|
32
|
+
descr?: string | null;
|
|
33
|
+
}>;
|
|
34
|
+
readonly actions: globalThis.Record<never, never>;
|
|
35
|
+
} & typeof __.Entity;
|
|
36
|
+
/**
|
|
37
|
+
* Aspect for a code list with name and description
|
|
38
|
+
*
|
|
39
|
+
* See https://cap.cloud.sap/docs/cds/common#aspect-codelist
|
|
40
|
+
*/
|
|
41
|
+
export declare class CodeList extends CodeList_base {
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Aspect for a code list with name and description
|
|
45
|
+
*
|
|
46
|
+
* See https://cap.cloud.sap/docs/cds/common#aspect-codelist
|
|
47
|
+
*/
|
|
48
|
+
export declare class CodeList_ extends Array<CodeList> {
|
|
49
|
+
$count?: number;
|
|
50
|
+
}
|
|
51
|
+
export declare function _TextsAspectAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
52
|
+
new (...args: any[]): {
|
|
53
|
+
/** Type for a language code */
|
|
54
|
+
locale?: __.Key<Locale>;
|
|
55
|
+
};
|
|
56
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
57
|
+
readonly keys: __.KeysOf<{
|
|
58
|
+
/** Type for a language code */
|
|
59
|
+
locale?: __.Key<Locale>;
|
|
60
|
+
}>;
|
|
61
|
+
readonly elements: __.ElementsOf<{
|
|
62
|
+
/** Type for a language code */
|
|
63
|
+
locale?: __.Key<Locale>;
|
|
64
|
+
}>;
|
|
65
|
+
readonly actions: globalThis.Record<never, never>;
|
|
66
|
+
} & TBase;
|
|
67
|
+
declare const TextsAspect_base: {
|
|
68
|
+
new (...args: any[]): {
|
|
69
|
+
/** Type for a language code */
|
|
70
|
+
locale?: __.Key<Locale>;
|
|
71
|
+
};
|
|
72
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
73
|
+
readonly keys: __.KeysOf<{
|
|
74
|
+
/** Type for a language code */
|
|
75
|
+
locale?: __.Key<Locale>;
|
|
76
|
+
}>;
|
|
77
|
+
readonly elements: __.ElementsOf<{
|
|
78
|
+
/** Type for a language code */
|
|
79
|
+
locale?: __.Key<Locale>;
|
|
80
|
+
}>;
|
|
81
|
+
readonly actions: globalThis.Record<never, never>;
|
|
82
|
+
} & typeof __.Entity;
|
|
83
|
+
export declare class TextsAspect extends TextsAspect_base {
|
|
84
|
+
}
|
|
85
|
+
export declare class TextsAspect_ extends Array<TextsAspect> {
|
|
86
|
+
$count?: number;
|
|
87
|
+
}
|
|
88
|
+
export declare function _FlowHistoryAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
89
|
+
new (...args: any[]): {
|
|
90
|
+
transitions_?: __.Composition.of.many<Array<{
|
|
91
|
+
timestamp?: __.Key<__.DeepRequired<_.managed>["createdAt"]>;
|
|
92
|
+
user?: __.DeepRequired<_.managed>["createdBy"] | null;
|
|
93
|
+
status?: string | null;
|
|
94
|
+
comment?: string | null;
|
|
95
|
+
}>>;
|
|
96
|
+
};
|
|
97
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
98
|
+
readonly keys: __.KeysOf<{
|
|
99
|
+
transitions_?: __.Composition.of.many<Array<{
|
|
100
|
+
timestamp?: __.Key<__.DeepRequired<_.managed>["createdAt"]>;
|
|
101
|
+
user?: __.DeepRequired<_.managed>["createdBy"] | null;
|
|
102
|
+
status?: string | null;
|
|
103
|
+
comment?: string | null;
|
|
104
|
+
}>>;
|
|
105
|
+
}>;
|
|
106
|
+
readonly elements: __.ElementsOf<{
|
|
107
|
+
transitions_?: __.Composition.of.many<Array<{
|
|
108
|
+
timestamp?: __.Key<__.DeepRequired<_.managed>["createdAt"]>;
|
|
109
|
+
user?: __.DeepRequired<_.managed>["createdBy"] | null;
|
|
110
|
+
status?: string | null;
|
|
111
|
+
comment?: string | null;
|
|
112
|
+
}>>;
|
|
113
|
+
}>;
|
|
114
|
+
readonly actions: globalThis.Record<never, never>;
|
|
115
|
+
} & TBase;
|
|
116
|
+
declare const FlowHistory_base: {
|
|
117
|
+
new (...args: any[]): {
|
|
118
|
+
transitions_?: {
|
|
119
|
+
timestamp?: __.Key<__.DeepRequired<_.managed>["createdAt"]>;
|
|
120
|
+
user?: __.DeepRequired<_.managed>["createdBy"] | null;
|
|
121
|
+
status?: string | null;
|
|
122
|
+
comment?: string | null;
|
|
123
|
+
}[] | undefined;
|
|
124
|
+
};
|
|
125
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
126
|
+
readonly keys: __.KeysOf<{
|
|
127
|
+
transitions_?: {
|
|
128
|
+
timestamp?: __.Key<__.DeepRequired<_.managed>["createdAt"]>;
|
|
129
|
+
user?: __.DeepRequired<_.managed>["createdBy"] | null;
|
|
130
|
+
status?: string | null;
|
|
131
|
+
comment?: string | null;
|
|
132
|
+
}[] | undefined;
|
|
133
|
+
}>;
|
|
134
|
+
readonly elements: __.ElementsOf<{
|
|
135
|
+
transitions_?: {
|
|
136
|
+
timestamp?: __.Key<__.DeepRequired<_.managed>["createdAt"]>;
|
|
137
|
+
user?: __.DeepRequired<_.managed>["createdBy"] | null;
|
|
138
|
+
status?: string | null;
|
|
139
|
+
comment?: string | null;
|
|
140
|
+
}[] | undefined;
|
|
141
|
+
}>;
|
|
142
|
+
readonly actions: globalThis.Record<never, never>;
|
|
143
|
+
} & typeof __.Entity;
|
|
144
|
+
export declare class FlowHistory extends FlowHistory_base {
|
|
145
|
+
}
|
|
146
|
+
export declare class FlowHistory_ extends Array<FlowHistory> {
|
|
147
|
+
$count?: number;
|
|
148
|
+
}
|
|
149
|
+
export declare function _LanguageAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
150
|
+
new (...args: any[]): {
|
|
151
|
+
/** Type for a language code */
|
|
152
|
+
code?: __.Key<Locale>;
|
|
153
|
+
texts?: __.Composition.of.many<Languages.texts>;
|
|
154
|
+
localized?: __.Association.to<Languages.text> | null;
|
|
155
|
+
name?: string | null;
|
|
156
|
+
descr?: string | null;
|
|
157
|
+
};
|
|
158
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
159
|
+
readonly keys: __.KeysOf<{
|
|
160
|
+
/** Type for a language code */
|
|
161
|
+
code?: __.Key<Locale>;
|
|
162
|
+
texts?: __.Composition.of.many<Languages.texts>;
|
|
163
|
+
localized?: __.Association.to<Languages.text> | null;
|
|
164
|
+
name?: string | null;
|
|
165
|
+
descr?: string | null;
|
|
166
|
+
}>;
|
|
167
|
+
readonly elements: __.ElementsOf<{
|
|
168
|
+
/** Type for a language code */
|
|
169
|
+
code?: __.Key<Locale>;
|
|
170
|
+
texts?: __.Composition.of.many<Languages.texts>;
|
|
171
|
+
localized?: __.Association.to<Languages.text> | null;
|
|
172
|
+
name?: string | null;
|
|
173
|
+
descr?: string | null;
|
|
174
|
+
}>;
|
|
175
|
+
readonly actions: typeof CodeList.actions & globalThis.Record<never, never>;
|
|
176
|
+
} & TBase;
|
|
177
|
+
declare const Language_base: {
|
|
178
|
+
new (...args: any[]): {
|
|
179
|
+
/** Type for a language code */
|
|
180
|
+
code?: __.Key<Locale>;
|
|
181
|
+
texts?: __.Composition.of.many<Languages.texts>;
|
|
182
|
+
localized?: __.Association.to<Languages.text> | null;
|
|
183
|
+
name?: string | null;
|
|
184
|
+
descr?: string | null;
|
|
185
|
+
};
|
|
186
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
187
|
+
readonly keys: __.KeysOf<{
|
|
188
|
+
/** Type for a language code */
|
|
189
|
+
code?: __.Key<Locale>;
|
|
190
|
+
texts?: __.Composition.of.many<Languages.texts>;
|
|
191
|
+
localized?: __.Association.to<Languages.text> | null;
|
|
192
|
+
name?: string | null;
|
|
193
|
+
descr?: string | null;
|
|
194
|
+
}>;
|
|
195
|
+
readonly elements: __.ElementsOf<{
|
|
196
|
+
/** Type for a language code */
|
|
197
|
+
code?: __.Key<Locale>;
|
|
198
|
+
texts?: __.Composition.of.many<Languages.texts>;
|
|
199
|
+
localized?: __.Association.to<Languages.text> | null;
|
|
200
|
+
name?: string | null;
|
|
201
|
+
descr?: string | null;
|
|
202
|
+
}>;
|
|
203
|
+
readonly actions: typeof CodeList.actions & globalThis.Record<never, never>;
|
|
204
|
+
} & typeof __.Entity;
|
|
205
|
+
/**
|
|
206
|
+
* Code list for languages
|
|
207
|
+
*
|
|
208
|
+
* See https://cap.cloud.sap/docs/cds/common#entity-languages
|
|
209
|
+
*/
|
|
210
|
+
export declare class Language extends Language_base {
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Code list for languages
|
|
214
|
+
*
|
|
215
|
+
* See https://cap.cloud.sap/docs/cds/common#entity-languages
|
|
216
|
+
*/
|
|
217
|
+
export declare class Languages extends Array<Language> {
|
|
218
|
+
$count?: number;
|
|
219
|
+
}
|
|
220
|
+
export declare function _CountryAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
221
|
+
new (...args: any[]): {
|
|
222
|
+
code?: __.Key<string>;
|
|
223
|
+
texts?: __.Composition.of.many<Countries.texts>;
|
|
224
|
+
localized?: __.Association.to<Countries.text> | null;
|
|
225
|
+
name?: string | null;
|
|
226
|
+
descr?: string | null;
|
|
227
|
+
};
|
|
228
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
229
|
+
readonly keys: __.KeysOf<{
|
|
230
|
+
code?: __.Key<string>;
|
|
231
|
+
texts?: __.Composition.of.many<Countries.texts>;
|
|
232
|
+
localized?: __.Association.to<Countries.text> | null;
|
|
233
|
+
name?: string | null;
|
|
234
|
+
descr?: string | null;
|
|
235
|
+
}>;
|
|
236
|
+
readonly elements: __.ElementsOf<{
|
|
237
|
+
code?: __.Key<string>;
|
|
238
|
+
texts?: __.Composition.of.many<Countries.texts>;
|
|
239
|
+
localized?: __.Association.to<Countries.text> | null;
|
|
240
|
+
name?: string | null;
|
|
241
|
+
descr?: string | null;
|
|
242
|
+
}>;
|
|
243
|
+
readonly actions: typeof CodeList.actions & globalThis.Record<never, never>;
|
|
244
|
+
} & TBase;
|
|
245
|
+
declare const Country_base: {
|
|
246
|
+
new (...args: any[]): {
|
|
247
|
+
code?: __.Key<string>;
|
|
248
|
+
texts?: __.Composition.of.many<Countries.texts>;
|
|
249
|
+
localized?: __.Association.to<Countries.text> | null;
|
|
250
|
+
name?: string | null;
|
|
251
|
+
descr?: string | null;
|
|
252
|
+
};
|
|
253
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
254
|
+
readonly keys: __.KeysOf<{
|
|
255
|
+
code?: __.Key<string>;
|
|
256
|
+
texts?: __.Composition.of.many<Countries.texts>;
|
|
257
|
+
localized?: __.Association.to<Countries.text> | null;
|
|
258
|
+
name?: string | null;
|
|
259
|
+
descr?: string | null;
|
|
260
|
+
}>;
|
|
261
|
+
readonly elements: __.ElementsOf<{
|
|
262
|
+
code?: __.Key<string>;
|
|
263
|
+
texts?: __.Composition.of.many<Countries.texts>;
|
|
264
|
+
localized?: __.Association.to<Countries.text> | null;
|
|
265
|
+
name?: string | null;
|
|
266
|
+
descr?: string | null;
|
|
267
|
+
}>;
|
|
268
|
+
readonly actions: typeof CodeList.actions & globalThis.Record<never, never>;
|
|
269
|
+
} & typeof __.Entity;
|
|
270
|
+
/**
|
|
271
|
+
* Code list for countries
|
|
272
|
+
*
|
|
273
|
+
* See https://cap.cloud.sap/docs/cds/common#entity-countries
|
|
274
|
+
*/
|
|
275
|
+
export declare class Country extends Country_base {
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* Code list for countries
|
|
279
|
+
*
|
|
280
|
+
* See https://cap.cloud.sap/docs/cds/common#entity-countries
|
|
281
|
+
*/
|
|
282
|
+
export declare class Countries extends Array<Country> {
|
|
283
|
+
$count?: number;
|
|
284
|
+
}
|
|
285
|
+
export declare function _CurrencyAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
286
|
+
new (...args: any[]): {
|
|
287
|
+
code?: __.Key<string>;
|
|
288
|
+
symbol?: string | null;
|
|
289
|
+
minorUnit?: number | null;
|
|
290
|
+
texts?: __.Composition.of.many<Currencies.texts>;
|
|
291
|
+
localized?: __.Association.to<Currencies.text> | null;
|
|
292
|
+
name?: string | null;
|
|
293
|
+
descr?: string | null;
|
|
294
|
+
};
|
|
295
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
296
|
+
readonly keys: __.KeysOf<{
|
|
297
|
+
code?: __.Key<string>;
|
|
298
|
+
symbol?: string | null;
|
|
299
|
+
minorUnit?: number | null;
|
|
300
|
+
texts?: __.Composition.of.many<Currencies.texts>;
|
|
301
|
+
localized?: __.Association.to<Currencies.text> | null;
|
|
302
|
+
name?: string | null;
|
|
303
|
+
descr?: string | null;
|
|
304
|
+
}>;
|
|
305
|
+
readonly elements: __.ElementsOf<{
|
|
306
|
+
code?: __.Key<string>;
|
|
307
|
+
symbol?: string | null;
|
|
308
|
+
minorUnit?: number | null;
|
|
309
|
+
texts?: __.Composition.of.many<Currencies.texts>;
|
|
310
|
+
localized?: __.Association.to<Currencies.text> | null;
|
|
311
|
+
name?: string | null;
|
|
312
|
+
descr?: string | null;
|
|
313
|
+
}>;
|
|
314
|
+
readonly actions: typeof CodeList.actions & globalThis.Record<never, never>;
|
|
315
|
+
} & TBase;
|
|
316
|
+
declare const Currency_base: {
|
|
317
|
+
new (...args: any[]): {
|
|
318
|
+
code?: __.Key<string>;
|
|
319
|
+
symbol?: string | null;
|
|
320
|
+
minorUnit?: number | null;
|
|
321
|
+
texts?: __.Composition.of.many<Currencies.texts>;
|
|
322
|
+
localized?: __.Association.to<Currencies.text> | null;
|
|
323
|
+
name?: string | null;
|
|
324
|
+
descr?: string | null;
|
|
325
|
+
};
|
|
326
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
327
|
+
readonly keys: __.KeysOf<{
|
|
328
|
+
code?: __.Key<string>;
|
|
329
|
+
symbol?: string | null;
|
|
330
|
+
minorUnit?: number | null;
|
|
331
|
+
texts?: __.Composition.of.many<Currencies.texts>;
|
|
332
|
+
localized?: __.Association.to<Currencies.text> | null;
|
|
333
|
+
name?: string | null;
|
|
334
|
+
descr?: string | null;
|
|
335
|
+
}>;
|
|
336
|
+
readonly elements: __.ElementsOf<{
|
|
337
|
+
code?: __.Key<string>;
|
|
338
|
+
symbol?: string | null;
|
|
339
|
+
minorUnit?: number | null;
|
|
340
|
+
texts?: __.Composition.of.many<Currencies.texts>;
|
|
341
|
+
localized?: __.Association.to<Currencies.text> | null;
|
|
342
|
+
name?: string | null;
|
|
343
|
+
descr?: string | null;
|
|
344
|
+
}>;
|
|
345
|
+
readonly actions: typeof CodeList.actions & globalThis.Record<never, never>;
|
|
346
|
+
} & typeof __.Entity;
|
|
347
|
+
/**
|
|
348
|
+
* Code list for currencies
|
|
349
|
+
*
|
|
350
|
+
* See https://cap.cloud.sap/docs/cds/common#entity-currencies
|
|
351
|
+
*/
|
|
352
|
+
export declare class Currency extends Currency_base {
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* Code list for currencies
|
|
356
|
+
*
|
|
357
|
+
* See https://cap.cloud.sap/docs/cds/common#entity-currencies
|
|
358
|
+
*/
|
|
359
|
+
export declare class Currencies extends Array<Currency> {
|
|
360
|
+
$count?: number;
|
|
361
|
+
}
|
|
362
|
+
export declare function _TimezoneAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
363
|
+
new (...args: any[]): {
|
|
364
|
+
code?: __.Key<string>;
|
|
365
|
+
texts?: __.Composition.of.many<Timezones.texts>;
|
|
366
|
+
localized?: __.Association.to<Timezones.text> | null;
|
|
367
|
+
name?: string | null;
|
|
368
|
+
descr?: string | null;
|
|
369
|
+
};
|
|
370
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
371
|
+
readonly keys: __.KeysOf<{
|
|
372
|
+
code?: __.Key<string>;
|
|
373
|
+
texts?: __.Composition.of.many<Timezones.texts>;
|
|
374
|
+
localized?: __.Association.to<Timezones.text> | null;
|
|
375
|
+
name?: string | null;
|
|
376
|
+
descr?: string | null;
|
|
377
|
+
}>;
|
|
378
|
+
readonly elements: __.ElementsOf<{
|
|
379
|
+
code?: __.Key<string>;
|
|
380
|
+
texts?: __.Composition.of.many<Timezones.texts>;
|
|
381
|
+
localized?: __.Association.to<Timezones.text> | null;
|
|
382
|
+
name?: string | null;
|
|
383
|
+
descr?: string | null;
|
|
384
|
+
}>;
|
|
385
|
+
readonly actions: typeof CodeList.actions & globalThis.Record<never, never>;
|
|
386
|
+
} & TBase;
|
|
387
|
+
declare const Timezone_base: {
|
|
388
|
+
new (...args: any[]): {
|
|
389
|
+
code?: __.Key<string>;
|
|
390
|
+
texts?: __.Composition.of.many<Timezones.texts>;
|
|
391
|
+
localized?: __.Association.to<Timezones.text> | null;
|
|
392
|
+
name?: string | null;
|
|
393
|
+
descr?: string | null;
|
|
394
|
+
};
|
|
395
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
396
|
+
readonly keys: __.KeysOf<{
|
|
397
|
+
code?: __.Key<string>;
|
|
398
|
+
texts?: __.Composition.of.many<Timezones.texts>;
|
|
399
|
+
localized?: __.Association.to<Timezones.text> | null;
|
|
400
|
+
name?: string | null;
|
|
401
|
+
descr?: string | null;
|
|
402
|
+
}>;
|
|
403
|
+
readonly elements: __.ElementsOf<{
|
|
404
|
+
code?: __.Key<string>;
|
|
405
|
+
texts?: __.Composition.of.many<Timezones.texts>;
|
|
406
|
+
localized?: __.Association.to<Timezones.text> | null;
|
|
407
|
+
name?: string | null;
|
|
408
|
+
descr?: string | null;
|
|
409
|
+
}>;
|
|
410
|
+
readonly actions: typeof CodeList.actions & globalThis.Record<never, never>;
|
|
411
|
+
} & typeof __.Entity;
|
|
412
|
+
/**
|
|
413
|
+
* Code list for time zones
|
|
414
|
+
*
|
|
415
|
+
* See https://cap.cloud.sap/docs/cds/common#entity-timezones
|
|
416
|
+
*/
|
|
417
|
+
export declare class Timezone extends Timezone_base {
|
|
418
|
+
}
|
|
419
|
+
/**
|
|
420
|
+
* Code list for time zones
|
|
421
|
+
*
|
|
422
|
+
* See https://cap.cloud.sap/docs/cds/common#entity-timezones
|
|
423
|
+
*/
|
|
424
|
+
export declare class Timezones extends Array<Timezone> {
|
|
425
|
+
$count?: number;
|
|
426
|
+
}
|
|
427
|
+
export declare namespace Languages {
|
|
428
|
+
export function _textAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
429
|
+
new (...args: any[]): {
|
|
430
|
+
name?: string | null;
|
|
431
|
+
descr?: string | null;
|
|
432
|
+
/** Type for a language code */
|
|
433
|
+
code?: __.Key<Locale>;
|
|
434
|
+
/** Type for a language code */
|
|
435
|
+
locale?: __.Key<Locale>;
|
|
436
|
+
};
|
|
437
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
438
|
+
readonly keys: __.KeysOf<{
|
|
439
|
+
name?: string | null;
|
|
440
|
+
descr?: string | null;
|
|
441
|
+
/** Type for a language code */
|
|
442
|
+
code?: __.Key<Locale>;
|
|
443
|
+
/** Type for a language code */
|
|
444
|
+
locale?: __.Key<Locale>;
|
|
445
|
+
}> & typeof TextsAspect.keys;
|
|
446
|
+
readonly elements: __.ElementsOf<{
|
|
447
|
+
name?: string | null;
|
|
448
|
+
descr?: string | null;
|
|
449
|
+
/** Type for a language code */
|
|
450
|
+
code?: __.Key<Locale>;
|
|
451
|
+
/** Type for a language code */
|
|
452
|
+
locale?: __.Key<Locale>;
|
|
453
|
+
}>;
|
|
454
|
+
readonly actions: typeof TextsAspect.actions & globalThis.Record<never, never>;
|
|
455
|
+
} & TBase;
|
|
456
|
+
const text_base: {
|
|
457
|
+
new (...args: any[]): {
|
|
458
|
+
name?: string | null;
|
|
459
|
+
descr?: string | null;
|
|
460
|
+
/** Type for a language code */
|
|
461
|
+
code?: __.Key<Locale>;
|
|
462
|
+
/** Type for a language code */
|
|
463
|
+
locale?: __.Key<Locale>;
|
|
464
|
+
};
|
|
465
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
466
|
+
readonly keys: __.KeysOf<{
|
|
467
|
+
name?: string | null;
|
|
468
|
+
descr?: string | null;
|
|
469
|
+
/** Type for a language code */
|
|
470
|
+
code?: __.Key<Locale>;
|
|
471
|
+
/** Type for a language code */
|
|
472
|
+
locale?: __.Key<Locale>;
|
|
473
|
+
}> & __.KeysOf<{
|
|
474
|
+
/** Type for a language code */
|
|
475
|
+
locale?: __.Key<Locale>;
|
|
476
|
+
}>;
|
|
477
|
+
readonly elements: __.ElementsOf<{
|
|
478
|
+
name?: string | null;
|
|
479
|
+
descr?: string | null;
|
|
480
|
+
/** Type for a language code */
|
|
481
|
+
code?: __.Key<Locale>;
|
|
482
|
+
/** Type for a language code */
|
|
483
|
+
locale?: __.Key<Locale>;
|
|
484
|
+
}>;
|
|
485
|
+
readonly actions: typeof TextsAspect.actions & globalThis.Record<never, never>;
|
|
486
|
+
} & typeof __.Entity;
|
|
487
|
+
export class text extends text_base {
|
|
488
|
+
}
|
|
489
|
+
export class texts extends Array<text> {
|
|
490
|
+
$count?: number;
|
|
491
|
+
}
|
|
492
|
+
export {};
|
|
493
|
+
}
|
|
494
|
+
export declare namespace Countries {
|
|
495
|
+
export function _textAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
496
|
+
new (...args: any[]): {
|
|
497
|
+
name?: string | null;
|
|
498
|
+
descr?: string | null;
|
|
499
|
+
code?: __.Key<string>;
|
|
500
|
+
/** Type for a language code */
|
|
501
|
+
locale?: __.Key<Locale>;
|
|
502
|
+
};
|
|
503
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
504
|
+
readonly keys: __.KeysOf<{
|
|
505
|
+
name?: string | null;
|
|
506
|
+
descr?: string | null;
|
|
507
|
+
code?: __.Key<string>;
|
|
508
|
+
/** Type for a language code */
|
|
509
|
+
locale?: __.Key<Locale>;
|
|
510
|
+
}> & typeof TextsAspect.keys;
|
|
511
|
+
readonly elements: __.ElementsOf<{
|
|
512
|
+
name?: string | null;
|
|
513
|
+
descr?: string | null;
|
|
514
|
+
code?: __.Key<string>;
|
|
515
|
+
/** Type for a language code */
|
|
516
|
+
locale?: __.Key<Locale>;
|
|
517
|
+
}>;
|
|
518
|
+
readonly actions: typeof TextsAspect.actions & globalThis.Record<never, never>;
|
|
519
|
+
} & TBase;
|
|
520
|
+
const text_base_1: {
|
|
521
|
+
new (...args: any[]): {
|
|
522
|
+
name?: string | null;
|
|
523
|
+
descr?: string | null;
|
|
524
|
+
code?: __.Key<string>;
|
|
525
|
+
/** Type for a language code */
|
|
526
|
+
locale?: __.Key<Locale>;
|
|
527
|
+
};
|
|
528
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
529
|
+
readonly keys: __.KeysOf<{
|
|
530
|
+
name?: string | null;
|
|
531
|
+
descr?: string | null;
|
|
532
|
+
code?: __.Key<string>;
|
|
533
|
+
/** Type for a language code */
|
|
534
|
+
locale?: __.Key<Locale>;
|
|
535
|
+
}> & __.KeysOf<{
|
|
536
|
+
/** Type for a language code */
|
|
537
|
+
locale?: __.Key<Locale>;
|
|
538
|
+
}>;
|
|
539
|
+
readonly elements: __.ElementsOf<{
|
|
540
|
+
name?: string | null;
|
|
541
|
+
descr?: string | null;
|
|
542
|
+
code?: __.Key<string>;
|
|
543
|
+
/** Type for a language code */
|
|
544
|
+
locale?: __.Key<Locale>;
|
|
545
|
+
}>;
|
|
546
|
+
readonly actions: typeof TextsAspect.actions & globalThis.Record<never, never>;
|
|
547
|
+
} & typeof __.Entity;
|
|
548
|
+
export class text extends text_base_1 {
|
|
549
|
+
}
|
|
550
|
+
export class texts extends Array<text> {
|
|
551
|
+
$count?: number;
|
|
552
|
+
}
|
|
553
|
+
export {};
|
|
554
|
+
}
|
|
555
|
+
export declare namespace Currencies {
|
|
556
|
+
export function _textAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
557
|
+
new (...args: any[]): {
|
|
558
|
+
name?: string | null;
|
|
559
|
+
descr?: string | null;
|
|
560
|
+
code?: __.Key<string>;
|
|
561
|
+
/** Type for a language code */
|
|
562
|
+
locale?: __.Key<Locale>;
|
|
563
|
+
};
|
|
564
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
565
|
+
readonly keys: __.KeysOf<{
|
|
566
|
+
name?: string | null;
|
|
567
|
+
descr?: string | null;
|
|
568
|
+
code?: __.Key<string>;
|
|
569
|
+
/** Type for a language code */
|
|
570
|
+
locale?: __.Key<Locale>;
|
|
571
|
+
}> & typeof TextsAspect.keys;
|
|
572
|
+
readonly elements: __.ElementsOf<{
|
|
573
|
+
name?: string | null;
|
|
574
|
+
descr?: string | null;
|
|
575
|
+
code?: __.Key<string>;
|
|
576
|
+
/** Type for a language code */
|
|
577
|
+
locale?: __.Key<Locale>;
|
|
578
|
+
}>;
|
|
579
|
+
readonly actions: typeof TextsAspect.actions & globalThis.Record<never, never>;
|
|
580
|
+
} & TBase;
|
|
581
|
+
const text_base_2: {
|
|
582
|
+
new (...args: any[]): {
|
|
583
|
+
name?: string | null;
|
|
584
|
+
descr?: string | null;
|
|
585
|
+
code?: __.Key<string>;
|
|
586
|
+
/** Type for a language code */
|
|
587
|
+
locale?: __.Key<Locale>;
|
|
588
|
+
};
|
|
589
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
590
|
+
readonly keys: __.KeysOf<{
|
|
591
|
+
name?: string | null;
|
|
592
|
+
descr?: string | null;
|
|
593
|
+
code?: __.Key<string>;
|
|
594
|
+
/** Type for a language code */
|
|
595
|
+
locale?: __.Key<Locale>;
|
|
596
|
+
}> & __.KeysOf<{
|
|
597
|
+
/** Type for a language code */
|
|
598
|
+
locale?: __.Key<Locale>;
|
|
599
|
+
}>;
|
|
600
|
+
readonly elements: __.ElementsOf<{
|
|
601
|
+
name?: string | null;
|
|
602
|
+
descr?: string | null;
|
|
603
|
+
code?: __.Key<string>;
|
|
604
|
+
/** Type for a language code */
|
|
605
|
+
locale?: __.Key<Locale>;
|
|
606
|
+
}>;
|
|
607
|
+
readonly actions: typeof TextsAspect.actions & globalThis.Record<never, never>;
|
|
608
|
+
} & typeof __.Entity;
|
|
609
|
+
export class text extends text_base_2 {
|
|
610
|
+
}
|
|
611
|
+
export class texts extends Array<text> {
|
|
612
|
+
$count?: number;
|
|
613
|
+
}
|
|
614
|
+
export {};
|
|
615
|
+
}
|
|
616
|
+
export declare namespace Timezones {
|
|
617
|
+
export function _textAspect<TBase extends new (...args: any[]) => object>(Base: TBase): {
|
|
618
|
+
new (...args: any[]): {
|
|
619
|
+
name?: string | null;
|
|
620
|
+
descr?: string | null;
|
|
621
|
+
code?: __.Key<string>;
|
|
622
|
+
/** Type for a language code */
|
|
623
|
+
locale?: __.Key<Locale>;
|
|
624
|
+
};
|
|
625
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
626
|
+
readonly keys: __.KeysOf<{
|
|
627
|
+
name?: string | null;
|
|
628
|
+
descr?: string | null;
|
|
629
|
+
code?: __.Key<string>;
|
|
630
|
+
/** Type for a language code */
|
|
631
|
+
locale?: __.Key<Locale>;
|
|
632
|
+
}> & typeof TextsAspect.keys;
|
|
633
|
+
readonly elements: __.ElementsOf<{
|
|
634
|
+
name?: string | null;
|
|
635
|
+
descr?: string | null;
|
|
636
|
+
code?: __.Key<string>;
|
|
637
|
+
/** Type for a language code */
|
|
638
|
+
locale?: __.Key<Locale>;
|
|
639
|
+
}>;
|
|
640
|
+
readonly actions: typeof TextsAspect.actions & globalThis.Record<never, never>;
|
|
641
|
+
} & TBase;
|
|
642
|
+
const text_base_3: {
|
|
643
|
+
new (...args: any[]): {
|
|
644
|
+
name?: string | null;
|
|
645
|
+
descr?: string | null;
|
|
646
|
+
code?: __.Key<string>;
|
|
647
|
+
/** Type for a language code */
|
|
648
|
+
locale?: __.Key<Locale>;
|
|
649
|
+
};
|
|
650
|
+
readonly kind: "entity" | "type" | "aspect";
|
|
651
|
+
readonly keys: __.KeysOf<{
|
|
652
|
+
name?: string | null;
|
|
653
|
+
descr?: string | null;
|
|
654
|
+
code?: __.Key<string>;
|
|
655
|
+
/** Type for a language code */
|
|
656
|
+
locale?: __.Key<Locale>;
|
|
657
|
+
}> & __.KeysOf<{
|
|
658
|
+
/** Type for a language code */
|
|
659
|
+
locale?: __.Key<Locale>;
|
|
660
|
+
}>;
|
|
661
|
+
readonly elements: __.ElementsOf<{
|
|
662
|
+
name?: string | null;
|
|
663
|
+
descr?: string | null;
|
|
664
|
+
code?: __.Key<string>;
|
|
665
|
+
/** Type for a language code */
|
|
666
|
+
locale?: __.Key<Locale>;
|
|
667
|
+
}>;
|
|
668
|
+
readonly actions: typeof TextsAspect.actions & globalThis.Record<never, never>;
|
|
669
|
+
} & typeof __.Entity;
|
|
670
|
+
export class text extends text_base_3 {
|
|
671
|
+
}
|
|
672
|
+
export class texts extends Array<text> {
|
|
673
|
+
$count?: number;
|
|
674
|
+
}
|
|
675
|
+
export {};
|
|
676
|
+
}
|
|
677
|
+
export {};
|
|
678
|
+
//# sourceMappingURL=index.d.ts.map
|