@constructive-io/sdk 1.9.1 → 1.9.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/admin/orm/index.d.ts +13 -0
- package/admin/orm/index.js +8 -0
- package/admin/orm/input-types.d.ts +399 -0
- package/admin/orm/models/index.d.ts +4 -0
- package/admin/orm/models/index.js +9 -1
- package/admin/orm/models/orgChartEdge.d.ts +54 -0
- package/admin/orm/models/orgChartEdge.js +104 -0
- package/admin/orm/models/orgChartEdgeGrant.d.ts +54 -0
- package/{api/orm/models/platformApiModule.js → admin/orm/models/orgChartEdgeGrant.js} +27 -27
- package/admin/orm/models/orgGetManagersRecord.d.ts +30 -0
- package/admin/orm/models/orgGetManagersRecord.js +59 -0
- package/admin/orm/models/orgGetSubordinatesRecord.d.ts +30 -0
- package/admin/orm/models/orgGetSubordinatesRecord.js +59 -0
- package/admin/orm/query/index.d.ts +11 -0
- package/admin/orm/query/index.js +24 -0
- package/api/orm/index.d.ts +2 -4
- package/api/orm/index.js +2 -4
- package/api/orm/input-types.d.ts +378 -468
- package/api/orm/input-types.js +2 -2
- package/api/orm/models/domainType.d.ts +54 -0
- package/api/orm/models/{apiModule.js → domainType.js} +27 -27
- package/api/orm/models/index.d.ts +1 -2
- package/api/orm/models/index.js +4 -6
- package/compute/orm/input-types.d.ts +42 -3
- package/esm/admin/orm/index.d.ts +13 -0
- package/esm/admin/orm/index.js +8 -0
- package/esm/admin/orm/input-types.d.ts +399 -0
- package/esm/admin/orm/models/index.d.ts +4 -0
- package/esm/admin/orm/models/index.js +4 -0
- package/esm/admin/orm/models/orgChartEdge.d.ts +54 -0
- package/esm/admin/orm/models/orgChartEdge.js +100 -0
- package/esm/admin/orm/models/orgChartEdgeGrant.d.ts +54 -0
- package/esm/{api/orm/models/platformApiModule.js → admin/orm/models/orgChartEdgeGrant.js} +25 -25
- package/esm/admin/orm/models/orgGetManagersRecord.d.ts +30 -0
- package/esm/admin/orm/models/orgGetManagersRecord.js +55 -0
- package/esm/admin/orm/models/orgGetSubordinatesRecord.d.ts +30 -0
- package/esm/admin/orm/models/orgGetSubordinatesRecord.js +55 -0
- package/esm/admin/orm/query/index.d.ts +11 -0
- package/esm/admin/orm/query/index.js +24 -0
- package/esm/api/orm/index.d.ts +2 -4
- package/esm/api/orm/index.js +2 -4
- package/esm/api/orm/input-types.d.ts +378 -468
- package/esm/api/orm/input-types.js +2 -2
- package/esm/api/orm/models/domainType.d.ts +54 -0
- package/esm/api/orm/models/{apiModule.js → domainType.js} +25 -25
- package/esm/api/orm/models/index.d.ts +1 -2
- package/esm/api/orm/models/index.js +1 -2
- package/esm/compute/orm/input-types.d.ts +42 -3
- package/esm/modules/orm/input-types.d.ts +9 -16
- package/modules/orm/input-types.d.ts +9 -16
- package/package.json +5 -5
- package/api/orm/models/apiModule.d.ts +0 -54
- package/api/orm/models/platformApiModule.d.ts +0 -54
- package/esm/api/orm/models/apiModule.d.ts +0 -54
- package/esm/api/orm/models/platformApiModule.d.ts +0 -54
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
// ============ Connection Fields Map ============
|
|
2
2
|
export const connectionFieldsMap = {
|
|
3
3
|
Api: {
|
|
4
|
-
apiModules: 'ApiModule',
|
|
5
4
|
apiSchemas: 'ApiSchema',
|
|
6
5
|
corsSettings: 'CorsSetting',
|
|
7
6
|
},
|
|
@@ -10,6 +9,7 @@ export const connectionFieldsMap = {
|
|
|
10
9
|
compositeTypes: 'CompositeType',
|
|
11
10
|
databaseTransfers: 'DatabaseTransfer',
|
|
12
11
|
defaultPrivileges: 'DefaultPrivilege',
|
|
12
|
+
domainTypes: 'DomainType',
|
|
13
13
|
embeddingChunks: 'EmbeddingChunk',
|
|
14
14
|
enums: 'Enum',
|
|
15
15
|
exclusionConstraints: 'ExclusionConstraint',
|
|
@@ -49,7 +49,6 @@ export const connectionFieldsMap = {
|
|
|
49
49
|
domainVerifications: 'DomainVerification',
|
|
50
50
|
},
|
|
51
51
|
PlatformApi: {
|
|
52
|
-
platformApiModulesByApiId: 'PlatformApiModule',
|
|
53
52
|
platformApiSchemasByApiId: 'PlatformApiSchema',
|
|
54
53
|
},
|
|
55
54
|
PlatformDomain: {
|
|
@@ -69,6 +68,7 @@ export const connectionFieldsMap = {
|
|
|
69
68
|
apiSchemas: 'ApiSchema',
|
|
70
69
|
compositeTypes: 'CompositeType',
|
|
71
70
|
defaultPrivileges: 'DefaultPrivilege',
|
|
71
|
+
domainTypes: 'DomainType',
|
|
72
72
|
enums: 'Enum',
|
|
73
73
|
functions: 'Function',
|
|
74
74
|
platformApiSchemas: 'PlatformApiSchema',
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DomainType model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { DomainTypeWithRelations, DomainTypeSelect, DomainTypeFilter, DomainTypeOrderBy, CreateDomainTypeInput, DomainTypePatch } from '../input-types';
|
|
10
|
+
export declare class DomainTypeModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends DomainTypeSelect>(args: FindManyArgs<S, DomainTypeFilter, DomainTypeOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, DomainTypeSelect>): QueryBuilder<{
|
|
16
|
+
domainTypes: ConnectionResult<InferSelectResult<DomainTypeWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends DomainTypeSelect>(args: FindFirstArgs<S, DomainTypeFilter, DomainTypeOrderBy> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, DomainTypeSelect>): QueryBuilder<{
|
|
21
|
+
domainType: InferSelectResult<DomainTypeWithRelations, S> | null;
|
|
22
|
+
}>;
|
|
23
|
+
findOne<S extends DomainTypeSelect>(args: {
|
|
24
|
+
id: string;
|
|
25
|
+
select: S;
|
|
26
|
+
} & StrictSelect<S, DomainTypeSelect>): QueryBuilder<{
|
|
27
|
+
domainType: InferSelectResult<DomainTypeWithRelations, S> | null;
|
|
28
|
+
}>;
|
|
29
|
+
create<S extends DomainTypeSelect>(args: CreateArgs<S, CreateDomainTypeInput['domainType']> & {
|
|
30
|
+
select: S;
|
|
31
|
+
} & StrictSelect<S, DomainTypeSelect>): QueryBuilder<{
|
|
32
|
+
createDomainType: {
|
|
33
|
+
domainType: InferSelectResult<DomainTypeWithRelations, S>;
|
|
34
|
+
};
|
|
35
|
+
}>;
|
|
36
|
+
update<S extends DomainTypeSelect>(args: UpdateArgs<S, {
|
|
37
|
+
id: string;
|
|
38
|
+
}, DomainTypePatch> & {
|
|
39
|
+
select: S;
|
|
40
|
+
} & StrictSelect<S, DomainTypeSelect>): QueryBuilder<{
|
|
41
|
+
updateDomainType: {
|
|
42
|
+
domainType: InferSelectResult<DomainTypeWithRelations, S>;
|
|
43
|
+
};
|
|
44
|
+
}>;
|
|
45
|
+
delete<S extends DomainTypeSelect>(args: DeleteArgs<{
|
|
46
|
+
id: string;
|
|
47
|
+
}, S> & {
|
|
48
|
+
select: S;
|
|
49
|
+
} & StrictSelect<S, DomainTypeSelect>): QueryBuilder<{
|
|
50
|
+
deleteDomainType: {
|
|
51
|
+
domainType: InferSelectResult<DomainTypeWithRelations, S>;
|
|
52
|
+
};
|
|
53
|
+
}>;
|
|
54
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
|
|
2
2
|
import { connectionFieldsMap } from '../input-types';
|
|
3
|
-
export class
|
|
3
|
+
export class DomainTypeModel {
|
|
4
4
|
client;
|
|
5
5
|
constructor(client) {
|
|
6
6
|
this.client = client;
|
|
7
7
|
}
|
|
8
8
|
findMany(args) {
|
|
9
|
-
const { document, variables } = buildFindManyDocument('
|
|
9
|
+
const { document, variables } = buildFindManyDocument('DomainType', 'domainTypes', args.select, {
|
|
10
10
|
where: args?.where,
|
|
11
11
|
orderBy: args?.orderBy,
|
|
12
12
|
first: args?.first,
|
|
@@ -14,85 +14,85 @@ export class ApiModuleModel {
|
|
|
14
14
|
after: args?.after,
|
|
15
15
|
before: args?.before,
|
|
16
16
|
offset: args?.offset,
|
|
17
|
-
}, '
|
|
17
|
+
}, 'DomainTypeFilter', 'DomainTypeOrderBy', connectionFieldsMap);
|
|
18
18
|
return new QueryBuilder({
|
|
19
19
|
client: this.client,
|
|
20
20
|
operation: 'query',
|
|
21
|
-
operationName: '
|
|
22
|
-
fieldName: '
|
|
21
|
+
operationName: 'DomainType',
|
|
22
|
+
fieldName: 'domainTypes',
|
|
23
23
|
document,
|
|
24
24
|
variables,
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
27
|
findFirst(args) {
|
|
28
|
-
const { document, variables } = buildFindFirstDocument('
|
|
28
|
+
const { document, variables } = buildFindFirstDocument('DomainType', 'domainTypes', args.select, {
|
|
29
29
|
where: args?.where,
|
|
30
30
|
orderBy: args?.orderBy,
|
|
31
|
-
}, '
|
|
31
|
+
}, 'DomainTypeFilter', 'DomainTypeOrderBy', connectionFieldsMap);
|
|
32
32
|
return new QueryBuilder({
|
|
33
33
|
client: this.client,
|
|
34
34
|
operation: 'query',
|
|
35
|
-
operationName: '
|
|
36
|
-
fieldName: '
|
|
35
|
+
operationName: 'DomainType',
|
|
36
|
+
fieldName: 'domainType',
|
|
37
37
|
document,
|
|
38
38
|
variables,
|
|
39
39
|
transform: (data) => ({
|
|
40
|
-
|
|
40
|
+
domainType: data.domainTypes?.nodes?.[0] ?? null,
|
|
41
41
|
}),
|
|
42
42
|
});
|
|
43
43
|
}
|
|
44
44
|
findOne(args) {
|
|
45
|
-
const { document, variables } = buildFindManyDocument('
|
|
45
|
+
const { document, variables } = buildFindManyDocument('DomainType', 'domainTypes', args.select, {
|
|
46
46
|
where: {
|
|
47
47
|
id: {
|
|
48
48
|
equalTo: args.id,
|
|
49
49
|
},
|
|
50
50
|
},
|
|
51
51
|
first: 1,
|
|
52
|
-
}, '
|
|
52
|
+
}, 'DomainTypeFilter', 'DomainTypeOrderBy', connectionFieldsMap);
|
|
53
53
|
return new QueryBuilder({
|
|
54
54
|
client: this.client,
|
|
55
55
|
operation: 'query',
|
|
56
|
-
operationName: '
|
|
57
|
-
fieldName: '
|
|
56
|
+
operationName: 'DomainType',
|
|
57
|
+
fieldName: 'domainType',
|
|
58
58
|
document,
|
|
59
59
|
variables,
|
|
60
60
|
transform: (data) => ({
|
|
61
|
-
|
|
61
|
+
domainType: data.domainTypes?.nodes?.[0] ?? null,
|
|
62
62
|
}),
|
|
63
63
|
});
|
|
64
64
|
}
|
|
65
65
|
create(args) {
|
|
66
|
-
const { document, variables } = buildCreateDocument('
|
|
66
|
+
const { document, variables } = buildCreateDocument('DomainType', 'createDomainType', 'domainType', args.select, args.data, 'CreateDomainTypeInput', connectionFieldsMap);
|
|
67
67
|
return new QueryBuilder({
|
|
68
68
|
client: this.client,
|
|
69
69
|
operation: 'mutation',
|
|
70
|
-
operationName: '
|
|
71
|
-
fieldName: '
|
|
70
|
+
operationName: 'DomainType',
|
|
71
|
+
fieldName: 'createDomainType',
|
|
72
72
|
document,
|
|
73
73
|
variables,
|
|
74
74
|
});
|
|
75
75
|
}
|
|
76
76
|
update(args) {
|
|
77
|
-
const { document, variables } = buildUpdateByPkDocument('
|
|
77
|
+
const { document, variables } = buildUpdateByPkDocument('DomainType', 'updateDomainType', 'domainType', args.select, args.where.id, args.data, 'UpdateDomainTypeInput', 'id', 'domainTypePatch', connectionFieldsMap, undefined);
|
|
78
78
|
return new QueryBuilder({
|
|
79
79
|
client: this.client,
|
|
80
80
|
operation: 'mutation',
|
|
81
|
-
operationName: '
|
|
82
|
-
fieldName: '
|
|
81
|
+
operationName: 'DomainType',
|
|
82
|
+
fieldName: 'updateDomainType',
|
|
83
83
|
document,
|
|
84
84
|
variables,
|
|
85
85
|
});
|
|
86
86
|
}
|
|
87
87
|
delete(args) {
|
|
88
|
-
const { document, variables } = buildDeleteByPkDocument('
|
|
88
|
+
const { document, variables } = buildDeleteByPkDocument('DomainType', 'deleteDomainType', 'domainType', {
|
|
89
89
|
id: args.where.id,
|
|
90
|
-
}, '
|
|
90
|
+
}, 'DeleteDomainTypeInput', args.select, connectionFieldsMap);
|
|
91
91
|
return new QueryBuilder({
|
|
92
92
|
client: this.client,
|
|
93
93
|
operation: 'mutation',
|
|
94
|
-
operationName: '
|
|
95
|
-
fieldName: '
|
|
94
|
+
operationName: 'DomainType',
|
|
95
|
+
fieldName: 'deleteDomainType',
|
|
96
96
|
document,
|
|
97
97
|
variables,
|
|
98
98
|
});
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
export { ApiModel } from './api';
|
|
7
|
-
export { ApiModuleModel } from './apiModule';
|
|
8
7
|
export { ApiSchemaModel } from './apiSchema';
|
|
9
8
|
export { ApiSettingModel } from './apiSetting';
|
|
10
9
|
export { AstMigrationModel } from './astMigration';
|
|
@@ -17,6 +16,7 @@ export { DatabaseTransferModel } from './databaseTransfer';
|
|
|
17
16
|
export { DefaultPrivilegeModel } from './defaultPrivilege';
|
|
18
17
|
export { DomainModel } from './domain';
|
|
19
18
|
export { DomainEventModel } from './domainEvent';
|
|
19
|
+
export { DomainTypeModel } from './domainType';
|
|
20
20
|
export { DomainVerificationModel } from './domainVerification';
|
|
21
21
|
export { EmbeddingChunkModel } from './embeddingChunk';
|
|
22
22
|
export { EnumModel } from './enum';
|
|
@@ -32,7 +32,6 @@ export { ManagedDomainModel } from './managedDomain';
|
|
|
32
32
|
export { NodeTypeRegistryModel } from './nodeTypeRegistry';
|
|
33
33
|
export { PartitionModel } from './partition';
|
|
34
34
|
export { PlatformApiModel } from './platformApi';
|
|
35
|
-
export { PlatformApiModuleModel } from './platformApiModule';
|
|
36
35
|
export { PlatformApiSchemaModel } from './platformApiSchema';
|
|
37
36
|
export { PlatformApiSettingModel } from './platformApiSetting';
|
|
38
37
|
export { PlatformCorsSettingModel } from './platformCorsSetting';
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
export { ApiModel } from './api';
|
|
7
|
-
export { ApiModuleModel } from './apiModule';
|
|
8
7
|
export { ApiSchemaModel } from './apiSchema';
|
|
9
8
|
export { ApiSettingModel } from './apiSetting';
|
|
10
9
|
export { AstMigrationModel } from './astMigration';
|
|
@@ -17,6 +16,7 @@ export { DatabaseTransferModel } from './databaseTransfer';
|
|
|
17
16
|
export { DefaultPrivilegeModel } from './defaultPrivilege';
|
|
18
17
|
export { DomainModel } from './domain';
|
|
19
18
|
export { DomainEventModel } from './domainEvent';
|
|
19
|
+
export { DomainTypeModel } from './domainType';
|
|
20
20
|
export { DomainVerificationModel } from './domainVerification';
|
|
21
21
|
export { EmbeddingChunkModel } from './embeddingChunk';
|
|
22
22
|
export { EnumModel } from './enum';
|
|
@@ -32,7 +32,6 @@ export { ManagedDomainModel } from './managedDomain';
|
|
|
32
32
|
export { NodeTypeRegistryModel } from './nodeTypeRegistry';
|
|
33
33
|
export { PartitionModel } from './partition';
|
|
34
34
|
export { PlatformApiModel } from './platformApi';
|
|
35
|
-
export { PlatformApiModuleModel } from './platformApiModule';
|
|
36
35
|
export { PlatformApiSchemaModel } from './platformApiSchema';
|
|
37
36
|
export { PlatformApiSettingModel } from './platformApiSetting';
|
|
38
37
|
export { PlatformCorsSettingModel } from './platformCorsSetting';
|
|
@@ -265,9 +265,11 @@ export interface FunctionApiBinding {
|
|
|
265
265
|
apiId?: string | null;
|
|
266
266
|
/** Per-binding configuration (overrides, routing rules, etc.) */
|
|
267
267
|
config?: Record<string, unknown> | null;
|
|
268
|
+
createdAt?: string | null;
|
|
268
269
|
/** Function definition this binding belongs to */
|
|
269
270
|
functionDefinitionId?: string | null;
|
|
270
271
|
id: string;
|
|
272
|
+
updatedAt?: string | null;
|
|
271
273
|
}
|
|
272
274
|
/** Function definitions — registered cloud functions with routing, queue, and retry configuration */
|
|
273
275
|
export interface FunctionDefinition {
|
|
@@ -860,9 +862,11 @@ export interface PlatformFunctionApiBinding {
|
|
|
860
862
|
apiId?: string | null;
|
|
861
863
|
/** Per-binding configuration (overrides, routing rules, etc.) */
|
|
862
864
|
config?: Record<string, unknown> | null;
|
|
865
|
+
createdAt?: string | null;
|
|
863
866
|
/** Function definition this binding belongs to */
|
|
864
867
|
functionDefinitionId?: string | null;
|
|
865
868
|
id: string;
|
|
869
|
+
updatedAt?: string | null;
|
|
866
870
|
}
|
|
867
871
|
/** Function definitions — registered cloud functions with routing, queue, and retry configuration */
|
|
868
872
|
export interface PlatformFunctionDefinition {
|
|
@@ -1069,6 +1073,8 @@ export interface PlatformFunctionInvocation {
|
|
|
1069
1073
|
completedAt?: string | null;
|
|
1070
1074
|
/** Invocation creation timestamp (partition key) */
|
|
1071
1075
|
createdAt?: string | null;
|
|
1076
|
+
/** Database this invocation is attributed to (usage/billing attribution) */
|
|
1077
|
+
databaseId?: string | null;
|
|
1072
1078
|
/** Scope that owns function_definition_id (e.g. app/org/database/platform) — the per-scope definitions table the resolver selected */
|
|
1073
1079
|
definitionScope?: string | null;
|
|
1074
1080
|
/** Wall-clock execution time in milliseconds */
|
|
@@ -2155,8 +2161,10 @@ export type FunctionApiBindingSelect = {
|
|
|
2155
2161
|
alias?: boolean;
|
|
2156
2162
|
apiId?: boolean;
|
|
2157
2163
|
config?: boolean;
|
|
2164
|
+
createdAt?: boolean;
|
|
2158
2165
|
functionDefinitionId?: boolean;
|
|
2159
2166
|
id?: boolean;
|
|
2167
|
+
updatedAt?: boolean;
|
|
2160
2168
|
functionDefinition?: {
|
|
2161
2169
|
select: FunctionDefinitionSelect;
|
|
2162
2170
|
};
|
|
@@ -2546,8 +2554,10 @@ export type PlatformFunctionApiBindingSelect = {
|
|
|
2546
2554
|
alias?: boolean;
|
|
2547
2555
|
apiId?: boolean;
|
|
2548
2556
|
config?: boolean;
|
|
2557
|
+
createdAt?: boolean;
|
|
2549
2558
|
functionDefinitionId?: boolean;
|
|
2550
2559
|
id?: boolean;
|
|
2560
|
+
updatedAt?: boolean;
|
|
2551
2561
|
functionDefinition?: {
|
|
2552
2562
|
select: PlatformFunctionDefinitionSelect;
|
|
2553
2563
|
};
|
|
@@ -2684,6 +2694,7 @@ export type PlatformFunctionInvocationSelect = {
|
|
|
2684
2694
|
channel?: boolean;
|
|
2685
2695
|
completedAt?: boolean;
|
|
2686
2696
|
createdAt?: boolean;
|
|
2697
|
+
databaseId?: boolean;
|
|
2687
2698
|
definitionScope?: boolean;
|
|
2688
2699
|
durationMs?: boolean;
|
|
2689
2700
|
error?: boolean;
|
|
@@ -3389,6 +3400,8 @@ export interface FunctionApiBindingFilter {
|
|
|
3389
3400
|
apiId?: UUIDFilter;
|
|
3390
3401
|
/** Filter by the object’s `config` field. */
|
|
3391
3402
|
config?: JSONFilter;
|
|
3403
|
+
/** Filter by the object’s `createdAt` field. */
|
|
3404
|
+
createdAt?: DatetimeFilter;
|
|
3392
3405
|
/** Filter by the object’s `functionDefinition` relation. */
|
|
3393
3406
|
functionDefinition?: FunctionDefinitionFilter;
|
|
3394
3407
|
/** Filter by the object’s `functionDefinitionId` field. */
|
|
@@ -3403,6 +3416,8 @@ export interface FunctionApiBindingFilter {
|
|
|
3403
3416
|
not?: FunctionApiBindingFilter;
|
|
3404
3417
|
/** Checks for any expressions in this list. */
|
|
3405
3418
|
or?: FunctionApiBindingFilter[];
|
|
3419
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
3420
|
+
updatedAt?: DatetimeFilter;
|
|
3406
3421
|
}
|
|
3407
3422
|
export interface FunctionDefinitionFilter {
|
|
3408
3423
|
/** Filter by the object’s `accessChannels` field. */
|
|
@@ -4155,6 +4170,8 @@ export interface PlatformFunctionApiBindingFilter {
|
|
|
4155
4170
|
apiId?: UUIDFilter;
|
|
4156
4171
|
/** Filter by the object’s `config` field. */
|
|
4157
4172
|
config?: JSONFilter;
|
|
4173
|
+
/** Filter by the object’s `createdAt` field. */
|
|
4174
|
+
createdAt?: DatetimeFilter;
|
|
4158
4175
|
/** Filter by the object’s `functionDefinition` relation. */
|
|
4159
4176
|
functionDefinition?: PlatformFunctionDefinitionFilter;
|
|
4160
4177
|
/** Filter by the object’s `functionDefinitionId` field. */
|
|
@@ -4169,6 +4186,8 @@ export interface PlatformFunctionApiBindingFilter {
|
|
|
4169
4186
|
platformFunctionInvocationsByApiBindingId?: PlatformFunctionApiBindingToManyPlatformFunctionInvocationFilter;
|
|
4170
4187
|
/** `platformFunctionInvocationsByApiBindingId` exist. */
|
|
4171
4188
|
platformFunctionInvocationsByApiBindingIdExist?: boolean;
|
|
4189
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
4190
|
+
updatedAt?: DatetimeFilter;
|
|
4172
4191
|
}
|
|
4173
4192
|
export interface PlatformFunctionDefinitionFilter {
|
|
4174
4193
|
/** Filter by the object’s `accessChannels` field. */
|
|
@@ -4421,6 +4440,8 @@ export interface PlatformFunctionInvocationFilter {
|
|
|
4421
4440
|
completedAt?: DatetimeFilter;
|
|
4422
4441
|
/** Filter by the object’s `createdAt` field. */
|
|
4423
4442
|
createdAt?: DatetimeFilter;
|
|
4443
|
+
/** Filter by the object’s `databaseId` field. */
|
|
4444
|
+
databaseId?: UUIDFilter;
|
|
4424
4445
|
/** Filter by the object’s `definitionScope` field. */
|
|
4425
4446
|
definitionScope?: StringFilter;
|
|
4426
4447
|
/** Filter by the object’s `durationMs` field. */
|
|
@@ -5694,7 +5715,7 @@ export interface WebhookEventFilter {
|
|
|
5694
5715
|
updatedAt?: DatetimeFilter;
|
|
5695
5716
|
}
|
|
5696
5717
|
export type DbPresetOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'MODULES_HASH_ASC' | 'MODULES_HASH_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5697
|
-
export type FunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5718
|
+
export type FunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5698
5719
|
export type FunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
5699
5720
|
export type FunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'HANDLER_NAME_ASC' | 'HANDLER_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'IMAGE_VERSION_ASC' | 'IMAGE_VERSION_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5700
5721
|
export type FunctionDeploymentEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
@@ -5718,13 +5739,13 @@ export type InfraStoreOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE
|
|
|
5718
5739
|
export type IntegrationProviderOrderBy = 'BRAND_ASC' | 'BRAND_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'LOGO_ASC' | 'LOGO_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5719
5740
|
export type NamespaceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_MANAGED_ASC' | 'IS_MANAGED_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'NAMESPACE_NAME_ASC' | 'NAMESPACE_NAME_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5720
5741
|
export type NamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5721
|
-
export type PlatformFunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5742
|
+
export type PlatformFunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5722
5743
|
export type PlatformFunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'BILLABLE_ASC' | 'BILLABLE_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SYSTEM_ASC' | 'SYSTEM_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
5723
5744
|
export type PlatformFunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'HANDLER_NAME_ASC' | 'HANDLER_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'IMAGE_VERSION_ASC' | 'IMAGE_VERSION_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5724
5745
|
export type PlatformFunctionDeploymentEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5725
5746
|
export type PlatformFunctionExecutionLogOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'LOG_LEVEL_ASC' | 'LOG_LEVEL_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
5726
5747
|
export type PlatformFunctionInvocationAttemptOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ATTEMPT_ASC' | 'ATTEMPT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'ERROR_DETAIL_ASC' | 'ERROR_DETAIL_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_CREATED_AT_ASC' | 'INVOCATION_CREATED_AT_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'SUCCESS_ASC' | 'SUCCESS_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
5727
|
-
export type PlatformFunctionInvocationOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'API_BINDING_ID_ASC' | 'API_BINDING_ID_DESC' | 'CHANNEL_ASC' | 'CHANNEL_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_SCOPE_ASC' | 'DEFINITION_SCOPE_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'GRAPH_EXECUTION_ID_ASC' | 'GRAPH_EXECUTION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'JOB_ID_ASC' | 'JOB_ID_DESC' | 'NATURAL' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVENANCE_ASC' | 'PROVENANCE_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
5748
|
+
export type PlatformFunctionInvocationOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'API_BINDING_ID_ASC' | 'API_BINDING_ID_DESC' | 'CHANNEL_ASC' | 'CHANNEL_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFINITION_SCOPE_ASC' | 'DEFINITION_SCOPE_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'GRAPH_EXECUTION_ID_ASC' | 'GRAPH_EXECUTION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'JOB_ID_ASC' | 'JOB_ID_DESC' | 'NATURAL' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVENANCE_ASC' | 'PROVENANCE_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
5728
5749
|
export type PlatformInfraCommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
|
|
5729
5750
|
export type PlatformInfraGetAllTreeNodesRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'DATA_ASC' | 'DATA_DESC' | 'PATH_ASC' | 'PATH_DESC';
|
|
5730
5751
|
export type PlatformInfraObjectOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'ID_ASC' | 'ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC';
|
|
@@ -6884,6 +6905,7 @@ export interface CreatePlatformFunctionInvocationInput {
|
|
|
6884
6905
|
apiBindingId?: string;
|
|
6885
6906
|
channel?: string;
|
|
6886
6907
|
completedAt?: string;
|
|
6908
|
+
databaseId?: string;
|
|
6887
6909
|
definitionScope?: string;
|
|
6888
6910
|
durationMs?: number;
|
|
6889
6911
|
error?: string;
|
|
@@ -6904,6 +6926,7 @@ export interface PlatformFunctionInvocationPatch {
|
|
|
6904
6926
|
apiBindingId?: string | null;
|
|
6905
6927
|
channel?: string | null;
|
|
6906
6928
|
completedAt?: string | null;
|
|
6929
|
+
databaseId?: string | null;
|
|
6907
6930
|
definitionScope?: string | null;
|
|
6908
6931
|
durationMs?: number | null;
|
|
6909
6932
|
error?: string | null;
|
|
@@ -8782,9 +8805,11 @@ export interface FunctionApiBindingInput {
|
|
|
8782
8805
|
apiId: string;
|
|
8783
8806
|
/** Per-binding configuration (overrides, routing rules, etc.) */
|
|
8784
8807
|
config?: Record<string, unknown>;
|
|
8808
|
+
createdAt?: string;
|
|
8785
8809
|
/** Function definition this binding belongs to */
|
|
8786
8810
|
functionDefinitionId: string;
|
|
8787
8811
|
id?: string;
|
|
8812
|
+
updatedAt?: string;
|
|
8788
8813
|
}
|
|
8789
8814
|
/** An input for mutations affecting `FunctionDefinition` */
|
|
8790
8815
|
export interface FunctionDefinitionInput {
|
|
@@ -9338,9 +9363,11 @@ export interface PlatformFunctionApiBindingInput {
|
|
|
9338
9363
|
apiId: string;
|
|
9339
9364
|
/** Per-binding configuration (overrides, routing rules, etc.) */
|
|
9340
9365
|
config?: Record<string, unknown>;
|
|
9366
|
+
createdAt?: string;
|
|
9341
9367
|
/** Function definition this binding belongs to */
|
|
9342
9368
|
functionDefinitionId: string;
|
|
9343
9369
|
id?: string;
|
|
9370
|
+
updatedAt?: string;
|
|
9344
9371
|
}
|
|
9345
9372
|
/** An input for mutations affecting `PlatformFunctionDefinition` */
|
|
9346
9373
|
export interface PlatformFunctionDefinitionInput {
|
|
@@ -9537,6 +9564,8 @@ export interface PlatformFunctionInvocationInput {
|
|
|
9537
9564
|
completedAt?: string;
|
|
9538
9565
|
/** Invocation creation timestamp (partition key) */
|
|
9539
9566
|
createdAt?: string;
|
|
9567
|
+
/** Database this invocation is attributed to (usage/billing attribution) */
|
|
9568
|
+
databaseId?: string;
|
|
9540
9569
|
/** Scope that owns function_definition_id (e.g. app/org/database/platform) — the per-scope definitions table the resolver selected */
|
|
9541
9570
|
definitionScope?: string;
|
|
9542
9571
|
/** Wall-clock execution time in milliseconds */
|
|
@@ -10213,6 +10242,8 @@ export interface FunctionApiBindingFilter {
|
|
|
10213
10242
|
apiId?: UUIDFilter;
|
|
10214
10243
|
/** Filter by the object’s `config` field. */
|
|
10215
10244
|
config?: JSONFilter;
|
|
10245
|
+
/** Filter by the object’s `createdAt` field. */
|
|
10246
|
+
createdAt?: DatetimeFilter;
|
|
10216
10247
|
/** Filter by the object’s `functionDefinition` relation. */
|
|
10217
10248
|
functionDefinition?: FunctionDefinitionFilter;
|
|
10218
10249
|
/** Filter by the object’s `functionDefinitionId` field. */
|
|
@@ -10227,6 +10258,8 @@ export interface FunctionApiBindingFilter {
|
|
|
10227
10258
|
not?: FunctionApiBindingFilter;
|
|
10228
10259
|
/** Checks for any expressions in this list. */
|
|
10229
10260
|
or?: FunctionApiBindingFilter[];
|
|
10261
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
10262
|
+
updatedAt?: DatetimeFilter;
|
|
10230
10263
|
}
|
|
10231
10264
|
/** A filter to be used against `WebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
10232
10265
|
export interface WebhookEndpointFilter {
|
|
@@ -10695,6 +10728,8 @@ export interface PlatformFunctionInvocationFilter {
|
|
|
10695
10728
|
completedAt?: DatetimeFilter;
|
|
10696
10729
|
/** Filter by the object’s `createdAt` field. */
|
|
10697
10730
|
createdAt?: DatetimeFilter;
|
|
10731
|
+
/** Filter by the object’s `databaseId` field. */
|
|
10732
|
+
databaseId?: UUIDFilter;
|
|
10698
10733
|
/** Filter by the object’s `definitionScope` field. */
|
|
10699
10734
|
definitionScope?: StringFilter;
|
|
10700
10735
|
/** Filter by the object’s `durationMs` field. */
|
|
@@ -10738,6 +10773,8 @@ export interface PlatformFunctionApiBindingFilter {
|
|
|
10738
10773
|
apiId?: UUIDFilter;
|
|
10739
10774
|
/** Filter by the object’s `config` field. */
|
|
10740
10775
|
config?: JSONFilter;
|
|
10776
|
+
/** Filter by the object’s `createdAt` field. */
|
|
10777
|
+
createdAt?: DatetimeFilter;
|
|
10741
10778
|
/** Filter by the object’s `functionDefinition` relation. */
|
|
10742
10779
|
functionDefinition?: PlatformFunctionDefinitionFilter;
|
|
10743
10780
|
/** Filter by the object’s `functionDefinitionId` field. */
|
|
@@ -10752,6 +10789,8 @@ export interface PlatformFunctionApiBindingFilter {
|
|
|
10752
10789
|
platformFunctionInvocationsByApiBindingId?: PlatformFunctionApiBindingToManyPlatformFunctionInvocationFilter;
|
|
10753
10790
|
/** `platformFunctionInvocationsByApiBindingId` exist. */
|
|
10754
10791
|
platformFunctionInvocationsByApiBindingIdExist?: boolean;
|
|
10792
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
10793
|
+
updatedAt?: DatetimeFilter;
|
|
10755
10794
|
}
|
|
10756
10795
|
/** A filter to be used against `PlatformWebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
10757
10796
|
export interface PlatformWebhookEndpointFilter {
|