teamcopilot 0.4.0 → 0.4.1
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/cronjobs/index.js +18 -0
- package/dist/cronjobs/scheduler.js +43 -23
- package/dist/frontend/assets/{cssMode-D61jI1q8.js → cssMode-Cqdl5sUM.js} +1 -1
- package/dist/frontend/assets/{freemarker2-D7jbp8Ou.js → freemarker2-ykAhuplU.js} +1 -1
- package/dist/frontend/assets/{handlebars-Bc-JftZk.js → handlebars-DX_JwRM8.js} +1 -1
- package/dist/frontend/assets/{html-DDiqAIoX.js → html-Bi_zOcbU.js} +1 -1
- package/dist/frontend/assets/{htmlMode-CTqwI9wB.js → htmlMode-CkAUoAah.js} +1 -1
- package/dist/frontend/assets/{index-BT56_j3n.js → index-Cgozj4fx.js} +119 -119
- package/dist/frontend/assets/{javascript-nKOYA_Se.js → javascript-D3Rjwp97.js} +1 -1
- package/dist/frontend/assets/{jsonMode-Bva005Wq.js → jsonMode-K4i6LjP2.js} +1 -1
- package/dist/frontend/assets/{liquid-I4Ds0px7.js → liquid-D8F4-sAz.js} +1 -1
- package/dist/frontend/assets/{mdx-CZoS96A9.js → mdx-C2xw8PNz.js} +1 -1
- package/dist/frontend/assets/{python-DQTI4Vcm.js → python-CqTGfu2v.js} +1 -1
- package/dist/frontend/assets/{razor-B7Jj-lLo.js → razor-DFSsPzdZ.js} +1 -1
- package/dist/frontend/assets/{tsMode-DBPs2Zgr.js → tsMode-BkLQEtPb.js} +1 -1
- package/dist/frontend/assets/{typescript-DitnluUd.js → typescript-CE_GQ-M1.js} +1 -1
- package/dist/frontend/assets/{xml-CRbYxRa_.js → xml-CGjMtNcA.js} +1 -1
- package/dist/frontend/assets/{yaml-D5pM1gl1.js → yaml-Zju9kuFB.js} +1 -1
- package/dist/frontend/index.html +1 -1
- package/package.json +1 -1
- package/prisma/generated/client/edge.js +5 -3
- package/prisma/generated/client/index-browser.js +2 -0
- package/prisma/generated/client/index.d.ts +142 -56
- package/prisma/generated/client/index.js +5 -3
- package/prisma/generated/client/package.json +1 -1
- package/prisma/generated/client/schema.prisma +2 -0
- package/prisma/generated/client/wasm.js +5 -3
- package/prisma/migrations/20260516082714_add_cronjob_monitor_timeout/migration.sql +38 -0
- package/prisma/migrations/20260516083452_allow_decimal_cronjob_timeout/migration.sql +37 -0
- package/prisma/migrations/20260516084455_add_cronjob_timeout_defaults/migration.sql +31 -0
- package/prisma/schema.prisma +2 -0
|
@@ -11844,11 +11844,13 @@ export namespace Prisma {
|
|
|
11844
11844
|
}
|
|
11845
11845
|
|
|
11846
11846
|
export type CronjobsAvgAggregateOutputType = {
|
|
11847
|
+
monitor_timeout_value: number | null
|
|
11847
11848
|
created_at: number | null
|
|
11848
11849
|
updated_at: number | null
|
|
11849
11850
|
}
|
|
11850
11851
|
|
|
11851
11852
|
export type CronjobsSumAggregateOutputType = {
|
|
11853
|
+
monitor_timeout_value: number | null
|
|
11852
11854
|
created_at: bigint | null
|
|
11853
11855
|
updated_at: bigint | null
|
|
11854
11856
|
}
|
|
@@ -11865,6 +11867,8 @@ export namespace Prisma {
|
|
|
11865
11867
|
workflow_input_json: string | null
|
|
11866
11868
|
cron_expression: string | null
|
|
11867
11869
|
timezone: string | null
|
|
11870
|
+
monitor_timeout_value: number | null
|
|
11871
|
+
monitor_timeout_unit: string | null
|
|
11868
11872
|
created_at: bigint | null
|
|
11869
11873
|
updated_at: bigint | null
|
|
11870
11874
|
}
|
|
@@ -11881,6 +11885,8 @@ export namespace Prisma {
|
|
|
11881
11885
|
workflow_input_json: string | null
|
|
11882
11886
|
cron_expression: string | null
|
|
11883
11887
|
timezone: string | null
|
|
11888
|
+
monitor_timeout_value: number | null
|
|
11889
|
+
monitor_timeout_unit: string | null
|
|
11884
11890
|
created_at: bigint | null
|
|
11885
11891
|
updated_at: bigint | null
|
|
11886
11892
|
}
|
|
@@ -11897,6 +11903,8 @@ export namespace Prisma {
|
|
|
11897
11903
|
workflow_input_json: number
|
|
11898
11904
|
cron_expression: number
|
|
11899
11905
|
timezone: number
|
|
11906
|
+
monitor_timeout_value: number
|
|
11907
|
+
monitor_timeout_unit: number
|
|
11900
11908
|
created_at: number
|
|
11901
11909
|
updated_at: number
|
|
11902
11910
|
_all: number
|
|
@@ -11904,11 +11912,13 @@ export namespace Prisma {
|
|
|
11904
11912
|
|
|
11905
11913
|
|
|
11906
11914
|
export type CronjobsAvgAggregateInputType = {
|
|
11915
|
+
monitor_timeout_value?: true
|
|
11907
11916
|
created_at?: true
|
|
11908
11917
|
updated_at?: true
|
|
11909
11918
|
}
|
|
11910
11919
|
|
|
11911
11920
|
export type CronjobsSumAggregateInputType = {
|
|
11921
|
+
monitor_timeout_value?: true
|
|
11912
11922
|
created_at?: true
|
|
11913
11923
|
updated_at?: true
|
|
11914
11924
|
}
|
|
@@ -11925,6 +11935,8 @@ export namespace Prisma {
|
|
|
11925
11935
|
workflow_input_json?: true
|
|
11926
11936
|
cron_expression?: true
|
|
11927
11937
|
timezone?: true
|
|
11938
|
+
monitor_timeout_value?: true
|
|
11939
|
+
monitor_timeout_unit?: true
|
|
11928
11940
|
created_at?: true
|
|
11929
11941
|
updated_at?: true
|
|
11930
11942
|
}
|
|
@@ -11941,6 +11953,8 @@ export namespace Prisma {
|
|
|
11941
11953
|
workflow_input_json?: true
|
|
11942
11954
|
cron_expression?: true
|
|
11943
11955
|
timezone?: true
|
|
11956
|
+
monitor_timeout_value?: true
|
|
11957
|
+
monitor_timeout_unit?: true
|
|
11944
11958
|
created_at?: true
|
|
11945
11959
|
updated_at?: true
|
|
11946
11960
|
}
|
|
@@ -11957,6 +11971,8 @@ export namespace Prisma {
|
|
|
11957
11971
|
workflow_input_json?: true
|
|
11958
11972
|
cron_expression?: true
|
|
11959
11973
|
timezone?: true
|
|
11974
|
+
monitor_timeout_value?: true
|
|
11975
|
+
monitor_timeout_unit?: true
|
|
11960
11976
|
created_at?: true
|
|
11961
11977
|
updated_at?: true
|
|
11962
11978
|
_all?: true
|
|
@@ -12060,6 +12076,8 @@ export namespace Prisma {
|
|
|
12060
12076
|
workflow_input_json: string | null
|
|
12061
12077
|
cron_expression: string
|
|
12062
12078
|
timezone: string
|
|
12079
|
+
monitor_timeout_value: number
|
|
12080
|
+
monitor_timeout_unit: string
|
|
12063
12081
|
created_at: bigint
|
|
12064
12082
|
updated_at: bigint
|
|
12065
12083
|
_count: CronjobsCountAggregateOutputType | null
|
|
@@ -12095,6 +12113,8 @@ export namespace Prisma {
|
|
|
12095
12113
|
workflow_input_json?: boolean
|
|
12096
12114
|
cron_expression?: boolean
|
|
12097
12115
|
timezone?: boolean
|
|
12116
|
+
monitor_timeout_value?: boolean
|
|
12117
|
+
monitor_timeout_unit?: boolean
|
|
12098
12118
|
created_at?: boolean
|
|
12099
12119
|
updated_at?: boolean
|
|
12100
12120
|
user?: boolean | usersDefaultArgs<ExtArgs>
|
|
@@ -12114,6 +12134,8 @@ export namespace Prisma {
|
|
|
12114
12134
|
workflow_input_json?: boolean
|
|
12115
12135
|
cron_expression?: boolean
|
|
12116
12136
|
timezone?: boolean
|
|
12137
|
+
monitor_timeout_value?: boolean
|
|
12138
|
+
monitor_timeout_unit?: boolean
|
|
12117
12139
|
created_at?: boolean
|
|
12118
12140
|
updated_at?: boolean
|
|
12119
12141
|
user?: boolean | usersDefaultArgs<ExtArgs>
|
|
@@ -12131,6 +12153,8 @@ export namespace Prisma {
|
|
|
12131
12153
|
workflow_input_json?: boolean
|
|
12132
12154
|
cron_expression?: boolean
|
|
12133
12155
|
timezone?: boolean
|
|
12156
|
+
monitor_timeout_value?: boolean
|
|
12157
|
+
monitor_timeout_unit?: boolean
|
|
12134
12158
|
created_at?: boolean
|
|
12135
12159
|
updated_at?: boolean
|
|
12136
12160
|
user?: boolean | usersDefaultArgs<ExtArgs>
|
|
@@ -12148,11 +12172,13 @@ export namespace Prisma {
|
|
|
12148
12172
|
workflow_input_json?: boolean
|
|
12149
12173
|
cron_expression?: boolean
|
|
12150
12174
|
timezone?: boolean
|
|
12175
|
+
monitor_timeout_value?: boolean
|
|
12176
|
+
monitor_timeout_unit?: boolean
|
|
12151
12177
|
created_at?: boolean
|
|
12152
12178
|
updated_at?: boolean
|
|
12153
12179
|
}
|
|
12154
12180
|
|
|
12155
|
-
export type cronjobsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "name" | "enabled" | "target_type" | "prompt" | "prompt_allow_workflow_runs_without_permission" | "workflow_slug" | "workflow_input_json" | "cron_expression" | "timezone" | "created_at" | "updated_at", ExtArgs["result"]["cronjobs"]>
|
|
12181
|
+
export type cronjobsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "name" | "enabled" | "target_type" | "prompt" | "prompt_allow_workflow_runs_without_permission" | "workflow_slug" | "workflow_input_json" | "cron_expression" | "timezone" | "monitor_timeout_value" | "monitor_timeout_unit" | "created_at" | "updated_at", ExtArgs["result"]["cronjobs"]>
|
|
12156
12182
|
export type cronjobsInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12157
12183
|
user?: boolean | usersDefaultArgs<ExtArgs>
|
|
12158
12184
|
runs?: boolean | cronjobs$runsArgs<ExtArgs>
|
|
@@ -12183,6 +12209,8 @@ export namespace Prisma {
|
|
|
12183
12209
|
workflow_input_json: string | null
|
|
12184
12210
|
cron_expression: string
|
|
12185
12211
|
timezone: string
|
|
12212
|
+
monitor_timeout_value: number
|
|
12213
|
+
monitor_timeout_unit: string
|
|
12186
12214
|
created_at: bigint
|
|
12187
12215
|
updated_at: bigint
|
|
12188
12216
|
}, ExtArgs["result"]["cronjobs"]>
|
|
@@ -12621,6 +12649,8 @@ export namespace Prisma {
|
|
|
12621
12649
|
readonly workflow_input_json: FieldRef<"cronjobs", 'String'>
|
|
12622
12650
|
readonly cron_expression: FieldRef<"cronjobs", 'String'>
|
|
12623
12651
|
readonly timezone: FieldRef<"cronjobs", 'String'>
|
|
12652
|
+
readonly monitor_timeout_value: FieldRef<"cronjobs", 'Float'>
|
|
12653
|
+
readonly monitor_timeout_unit: FieldRef<"cronjobs", 'String'>
|
|
12624
12654
|
readonly created_at: FieldRef<"cronjobs", 'BigInt'>
|
|
12625
12655
|
readonly updated_at: FieldRef<"cronjobs", 'BigInt'>
|
|
12626
12656
|
}
|
|
@@ -24620,6 +24650,8 @@ export namespace Prisma {
|
|
|
24620
24650
|
workflow_input_json: 'workflow_input_json',
|
|
24621
24651
|
cron_expression: 'cron_expression',
|
|
24622
24652
|
timezone: 'timezone',
|
|
24653
|
+
monitor_timeout_value: 'monitor_timeout_value',
|
|
24654
|
+
monitor_timeout_unit: 'monitor_timeout_unit',
|
|
24623
24655
|
created_at: 'created_at',
|
|
24624
24656
|
updated_at: 'updated_at'
|
|
24625
24657
|
};
|
|
@@ -24806,16 +24838,16 @@ export namespace Prisma {
|
|
|
24806
24838
|
|
|
24807
24839
|
|
|
24808
24840
|
/**
|
|
24809
|
-
* Reference to a field of type '
|
|
24841
|
+
* Reference to a field of type 'Float'
|
|
24810
24842
|
*/
|
|
24811
|
-
export type
|
|
24843
|
+
export type FloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float'>
|
|
24812
24844
|
|
|
24813
24845
|
|
|
24814
24846
|
|
|
24815
24847
|
/**
|
|
24816
|
-
* Reference to a field of type '
|
|
24848
|
+
* Reference to a field of type 'Int'
|
|
24817
24849
|
*/
|
|
24818
|
-
export type
|
|
24850
|
+
export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>
|
|
24819
24851
|
|
|
24820
24852
|
|
|
24821
24853
|
|
|
@@ -25383,6 +25415,8 @@ export namespace Prisma {
|
|
|
25383
25415
|
workflow_input_json?: StringNullableFilter<"cronjobs"> | string | null
|
|
25384
25416
|
cron_expression?: StringFilter<"cronjobs"> | string
|
|
25385
25417
|
timezone?: StringFilter<"cronjobs"> | string
|
|
25418
|
+
monitor_timeout_value?: FloatFilter<"cronjobs"> | number
|
|
25419
|
+
monitor_timeout_unit?: StringFilter<"cronjobs"> | string
|
|
25386
25420
|
created_at?: BigIntFilter<"cronjobs"> | bigint | number
|
|
25387
25421
|
updated_at?: BigIntFilter<"cronjobs"> | bigint | number
|
|
25388
25422
|
user?: XOR<UsersScalarRelationFilter, usersWhereInput>
|
|
@@ -25401,6 +25435,8 @@ export namespace Prisma {
|
|
|
25401
25435
|
workflow_input_json?: SortOrderInput | SortOrder
|
|
25402
25436
|
cron_expression?: SortOrder
|
|
25403
25437
|
timezone?: SortOrder
|
|
25438
|
+
monitor_timeout_value?: SortOrder
|
|
25439
|
+
monitor_timeout_unit?: SortOrder
|
|
25404
25440
|
created_at?: SortOrder
|
|
25405
25441
|
updated_at?: SortOrder
|
|
25406
25442
|
user?: usersOrderByWithRelationInput
|
|
@@ -25423,6 +25459,8 @@ export namespace Prisma {
|
|
|
25423
25459
|
workflow_input_json?: StringNullableFilter<"cronjobs"> | string | null
|
|
25424
25460
|
cron_expression?: StringFilter<"cronjobs"> | string
|
|
25425
25461
|
timezone?: StringFilter<"cronjobs"> | string
|
|
25462
|
+
monitor_timeout_value?: FloatFilter<"cronjobs"> | number
|
|
25463
|
+
monitor_timeout_unit?: StringFilter<"cronjobs"> | string
|
|
25426
25464
|
created_at?: BigIntFilter<"cronjobs"> | bigint | number
|
|
25427
25465
|
updated_at?: BigIntFilter<"cronjobs"> | bigint | number
|
|
25428
25466
|
user?: XOR<UsersScalarRelationFilter, usersWhereInput>
|
|
@@ -25441,6 +25479,8 @@ export namespace Prisma {
|
|
|
25441
25479
|
workflow_input_json?: SortOrderInput | SortOrder
|
|
25442
25480
|
cron_expression?: SortOrder
|
|
25443
25481
|
timezone?: SortOrder
|
|
25482
|
+
monitor_timeout_value?: SortOrder
|
|
25483
|
+
monitor_timeout_unit?: SortOrder
|
|
25444
25484
|
created_at?: SortOrder
|
|
25445
25485
|
updated_at?: SortOrder
|
|
25446
25486
|
_count?: cronjobsCountOrderByAggregateInput
|
|
@@ -25465,6 +25505,8 @@ export namespace Prisma {
|
|
|
25465
25505
|
workflow_input_json?: StringNullableWithAggregatesFilter<"cronjobs"> | string | null
|
|
25466
25506
|
cron_expression?: StringWithAggregatesFilter<"cronjobs"> | string
|
|
25467
25507
|
timezone?: StringWithAggregatesFilter<"cronjobs"> | string
|
|
25508
|
+
monitor_timeout_value?: FloatWithAggregatesFilter<"cronjobs"> | number
|
|
25509
|
+
monitor_timeout_unit?: StringWithAggregatesFilter<"cronjobs"> | string
|
|
25468
25510
|
created_at?: BigIntWithAggregatesFilter<"cronjobs"> | bigint | number
|
|
25469
25511
|
updated_at?: BigIntWithAggregatesFilter<"cronjobs"> | bigint | number
|
|
25470
25512
|
}
|
|
@@ -26781,6 +26823,8 @@ export namespace Prisma {
|
|
|
26781
26823
|
workflow_input_json?: string | null
|
|
26782
26824
|
cron_expression: string
|
|
26783
26825
|
timezone: string
|
|
26826
|
+
monitor_timeout_value?: number
|
|
26827
|
+
monitor_timeout_unit?: string
|
|
26784
26828
|
created_at: bigint | number
|
|
26785
26829
|
updated_at: bigint | number
|
|
26786
26830
|
user: usersCreateNestedOneWithoutCronjobsInput
|
|
@@ -26799,6 +26843,8 @@ export namespace Prisma {
|
|
|
26799
26843
|
workflow_input_json?: string | null
|
|
26800
26844
|
cron_expression: string
|
|
26801
26845
|
timezone: string
|
|
26846
|
+
monitor_timeout_value?: number
|
|
26847
|
+
monitor_timeout_unit?: string
|
|
26802
26848
|
created_at: bigint | number
|
|
26803
26849
|
updated_at: bigint | number
|
|
26804
26850
|
runs?: cronjob_runsUncheckedCreateNestedManyWithoutCronjobInput
|
|
@@ -26815,6 +26861,8 @@ export namespace Prisma {
|
|
|
26815
26861
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26816
26862
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
26817
26863
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
26864
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
26865
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
26818
26866
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
26819
26867
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
26820
26868
|
user?: usersUpdateOneRequiredWithoutCronjobsNestedInput
|
|
@@ -26833,6 +26881,8 @@ export namespace Prisma {
|
|
|
26833
26881
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26834
26882
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
26835
26883
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
26884
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
26885
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
26836
26886
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
26837
26887
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
26838
26888
|
runs?: cronjob_runsUncheckedUpdateManyWithoutCronjobNestedInput
|
|
@@ -26850,6 +26900,8 @@ export namespace Prisma {
|
|
|
26850
26900
|
workflow_input_json?: string | null
|
|
26851
26901
|
cron_expression: string
|
|
26852
26902
|
timezone: string
|
|
26903
|
+
monitor_timeout_value?: number
|
|
26904
|
+
monitor_timeout_unit?: string
|
|
26853
26905
|
created_at: bigint | number
|
|
26854
26906
|
updated_at: bigint | number
|
|
26855
26907
|
}
|
|
@@ -26865,6 +26917,8 @@ export namespace Prisma {
|
|
|
26865
26917
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26866
26918
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
26867
26919
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
26920
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
26921
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
26868
26922
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
26869
26923
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
26870
26924
|
}
|
|
@@ -26881,6 +26935,8 @@ export namespace Prisma {
|
|
|
26881
26935
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
26882
26936
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
26883
26937
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
26938
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
26939
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
26884
26940
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
26885
26941
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
26886
26942
|
}
|
|
@@ -28160,6 +28216,17 @@ export namespace Prisma {
|
|
|
28160
28216
|
not?: NestedBoolNullableFilter<$PrismaModel> | boolean | null
|
|
28161
28217
|
}
|
|
28162
28218
|
|
|
28219
|
+
export type FloatFilter<$PrismaModel = never> = {
|
|
28220
|
+
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
28221
|
+
in?: number[]
|
|
28222
|
+
notIn?: number[]
|
|
28223
|
+
lt?: number | FloatFieldRefInput<$PrismaModel>
|
|
28224
|
+
lte?: number | FloatFieldRefInput<$PrismaModel>
|
|
28225
|
+
gt?: number | FloatFieldRefInput<$PrismaModel>
|
|
28226
|
+
gte?: number | FloatFieldRefInput<$PrismaModel>
|
|
28227
|
+
not?: NestedFloatFilter<$PrismaModel> | number
|
|
28228
|
+
}
|
|
28229
|
+
|
|
28163
28230
|
export type cronjobsUser_idNameCompoundUniqueInput = {
|
|
28164
28231
|
user_id: string
|
|
28165
28232
|
name: string
|
|
@@ -28177,11 +28244,14 @@ export namespace Prisma {
|
|
|
28177
28244
|
workflow_input_json?: SortOrder
|
|
28178
28245
|
cron_expression?: SortOrder
|
|
28179
28246
|
timezone?: SortOrder
|
|
28247
|
+
monitor_timeout_value?: SortOrder
|
|
28248
|
+
monitor_timeout_unit?: SortOrder
|
|
28180
28249
|
created_at?: SortOrder
|
|
28181
28250
|
updated_at?: SortOrder
|
|
28182
28251
|
}
|
|
28183
28252
|
|
|
28184
28253
|
export type cronjobsAvgOrderByAggregateInput = {
|
|
28254
|
+
monitor_timeout_value?: SortOrder
|
|
28185
28255
|
created_at?: SortOrder
|
|
28186
28256
|
updated_at?: SortOrder
|
|
28187
28257
|
}
|
|
@@ -28198,6 +28268,8 @@ export namespace Prisma {
|
|
|
28198
28268
|
workflow_input_json?: SortOrder
|
|
28199
28269
|
cron_expression?: SortOrder
|
|
28200
28270
|
timezone?: SortOrder
|
|
28271
|
+
monitor_timeout_value?: SortOrder
|
|
28272
|
+
monitor_timeout_unit?: SortOrder
|
|
28201
28273
|
created_at?: SortOrder
|
|
28202
28274
|
updated_at?: SortOrder
|
|
28203
28275
|
}
|
|
@@ -28214,11 +28286,14 @@ export namespace Prisma {
|
|
|
28214
28286
|
workflow_input_json?: SortOrder
|
|
28215
28287
|
cron_expression?: SortOrder
|
|
28216
28288
|
timezone?: SortOrder
|
|
28289
|
+
monitor_timeout_value?: SortOrder
|
|
28290
|
+
monitor_timeout_unit?: SortOrder
|
|
28217
28291
|
created_at?: SortOrder
|
|
28218
28292
|
updated_at?: SortOrder
|
|
28219
28293
|
}
|
|
28220
28294
|
|
|
28221
28295
|
export type cronjobsSumOrderByAggregateInput = {
|
|
28296
|
+
monitor_timeout_value?: SortOrder
|
|
28222
28297
|
created_at?: SortOrder
|
|
28223
28298
|
updated_at?: SortOrder
|
|
28224
28299
|
}
|
|
@@ -28231,6 +28306,22 @@ export namespace Prisma {
|
|
|
28231
28306
|
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
28232
28307
|
}
|
|
28233
28308
|
|
|
28309
|
+
export type FloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
28310
|
+
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
28311
|
+
in?: number[]
|
|
28312
|
+
notIn?: number[]
|
|
28313
|
+
lt?: number | FloatFieldRefInput<$PrismaModel>
|
|
28314
|
+
lte?: number | FloatFieldRefInput<$PrismaModel>
|
|
28315
|
+
gt?: number | FloatFieldRefInput<$PrismaModel>
|
|
28316
|
+
gte?: number | FloatFieldRefInput<$PrismaModel>
|
|
28317
|
+
not?: NestedFloatWithAggregatesFilter<$PrismaModel> | number
|
|
28318
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
28319
|
+
_avg?: NestedFloatFilter<$PrismaModel>
|
|
28320
|
+
_sum?: NestedFloatFilter<$PrismaModel>
|
|
28321
|
+
_min?: NestedFloatFilter<$PrismaModel>
|
|
28322
|
+
_max?: NestedFloatFilter<$PrismaModel>
|
|
28323
|
+
}
|
|
28324
|
+
|
|
28234
28325
|
export type IntFilter<$PrismaModel = never> = {
|
|
28235
28326
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
28236
28327
|
in?: number[]
|
|
@@ -28387,17 +28478,6 @@ export namespace Prisma {
|
|
|
28387
28478
|
completed_at?: SortOrder
|
|
28388
28479
|
}
|
|
28389
28480
|
|
|
28390
|
-
export type FloatFilter<$PrismaModel = never> = {
|
|
28391
|
-
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
28392
|
-
in?: number[]
|
|
28393
|
-
notIn?: number[]
|
|
28394
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
|
28395
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
|
28396
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
|
28397
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
|
28398
|
-
not?: NestedFloatFilter<$PrismaModel> | number
|
|
28399
|
-
}
|
|
28400
|
-
|
|
28401
28481
|
export type Chat_sessionsScalarRelationFilter = {
|
|
28402
28482
|
is?: chat_sessionsWhereInput
|
|
28403
28483
|
isNot?: chat_sessionsWhereInput
|
|
@@ -28455,22 +28535,6 @@ export namespace Prisma {
|
|
|
28455
28535
|
updated_at?: SortOrder
|
|
28456
28536
|
}
|
|
28457
28537
|
|
|
28458
|
-
export type FloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
28459
|
-
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
28460
|
-
in?: number[]
|
|
28461
|
-
notIn?: number[]
|
|
28462
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
|
28463
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
|
28464
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
|
28465
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
|
28466
|
-
not?: NestedFloatWithAggregatesFilter<$PrismaModel> | number
|
|
28467
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
28468
|
-
_avg?: NestedFloatFilter<$PrismaModel>
|
|
28469
|
-
_sum?: NestedFloatFilter<$PrismaModel>
|
|
28470
|
-
_min?: NestedFloatFilter<$PrismaModel>
|
|
28471
|
-
_max?: NestedFloatFilter<$PrismaModel>
|
|
28472
|
-
}
|
|
28473
|
-
|
|
28474
28538
|
export type BytesNullableFilter<$PrismaModel = never> = {
|
|
28475
28539
|
equals?: Bytes | BytesFieldRefInput<$PrismaModel> | null
|
|
28476
28540
|
in?: Bytes[] | null
|
|
@@ -29466,6 +29530,14 @@ export namespace Prisma {
|
|
|
29466
29530
|
set?: boolean | null
|
|
29467
29531
|
}
|
|
29468
29532
|
|
|
29533
|
+
export type FloatFieldUpdateOperationsInput = {
|
|
29534
|
+
set?: number
|
|
29535
|
+
increment?: number
|
|
29536
|
+
decrement?: number
|
|
29537
|
+
multiply?: number
|
|
29538
|
+
divide?: number
|
|
29539
|
+
}
|
|
29540
|
+
|
|
29469
29541
|
export type usersUpdateOneRequiredWithoutCronjobsNestedInput = {
|
|
29470
29542
|
create?: XOR<usersCreateWithoutCronjobsInput, usersUncheckedCreateWithoutCronjobsInput>
|
|
29471
29543
|
connectOrCreate?: usersCreateOrConnectWithoutCronjobsInput
|
|
@@ -29618,14 +29690,6 @@ export namespace Prisma {
|
|
|
29618
29690
|
connect?: chat_sessionsWhereUniqueInput
|
|
29619
29691
|
}
|
|
29620
29692
|
|
|
29621
|
-
export type FloatFieldUpdateOperationsInput = {
|
|
29622
|
-
set?: number
|
|
29623
|
-
increment?: number
|
|
29624
|
-
decrement?: number
|
|
29625
|
-
multiply?: number
|
|
29626
|
-
divide?: number
|
|
29627
|
-
}
|
|
29628
|
-
|
|
29629
29693
|
export type chat_sessionsUpdateOneRequiredWithoutUsageNestedInput = {
|
|
29630
29694
|
create?: XOR<chat_sessionsCreateWithoutUsageInput, chat_sessionsUncheckedCreateWithoutUsageInput>
|
|
29631
29695
|
connectOrCreate?: chat_sessionsCreateOrConnectWithoutUsageInput
|
|
@@ -30050,22 +30114,6 @@ export namespace Prisma {
|
|
|
30050
30114
|
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
30051
30115
|
}
|
|
30052
30116
|
|
|
30053
|
-
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
30054
|
-
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
30055
|
-
in?: number[]
|
|
30056
|
-
notIn?: number[]
|
|
30057
|
-
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
30058
|
-
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
30059
|
-
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
30060
|
-
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
30061
|
-
not?: NestedIntWithAggregatesFilter<$PrismaModel> | number
|
|
30062
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
30063
|
-
_avg?: NestedFloatFilter<$PrismaModel>
|
|
30064
|
-
_sum?: NestedIntFilter<$PrismaModel>
|
|
30065
|
-
_min?: NestedIntFilter<$PrismaModel>
|
|
30066
|
-
_max?: NestedIntFilter<$PrismaModel>
|
|
30067
|
-
}
|
|
30068
|
-
|
|
30069
30117
|
export type NestedFloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
30070
30118
|
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
30071
30119
|
in?: number[]
|
|
@@ -30082,6 +30130,22 @@ export namespace Prisma {
|
|
|
30082
30130
|
_max?: NestedFloatFilter<$PrismaModel>
|
|
30083
30131
|
}
|
|
30084
30132
|
|
|
30133
|
+
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
30134
|
+
equals?: number | IntFieldRefInput<$PrismaModel>
|
|
30135
|
+
in?: number[]
|
|
30136
|
+
notIn?: number[]
|
|
30137
|
+
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
30138
|
+
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
30139
|
+
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
30140
|
+
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
30141
|
+
not?: NestedIntWithAggregatesFilter<$PrismaModel> | number
|
|
30142
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
30143
|
+
_avg?: NestedFloatFilter<$PrismaModel>
|
|
30144
|
+
_sum?: NestedIntFilter<$PrismaModel>
|
|
30145
|
+
_min?: NestedIntFilter<$PrismaModel>
|
|
30146
|
+
_max?: NestedIntFilter<$PrismaModel>
|
|
30147
|
+
}
|
|
30148
|
+
|
|
30085
30149
|
export type NestedBytesNullableFilter<$PrismaModel = never> = {
|
|
30086
30150
|
equals?: Bytes | BytesFieldRefInput<$PrismaModel> | null
|
|
30087
30151
|
in?: Bytes[] | null
|
|
@@ -30202,6 +30266,8 @@ export namespace Prisma {
|
|
|
30202
30266
|
workflow_input_json?: string | null
|
|
30203
30267
|
cron_expression: string
|
|
30204
30268
|
timezone: string
|
|
30269
|
+
monitor_timeout_value?: number
|
|
30270
|
+
monitor_timeout_unit?: string
|
|
30205
30271
|
created_at: bigint | number
|
|
30206
30272
|
updated_at: bigint | number
|
|
30207
30273
|
runs?: cronjob_runsCreateNestedManyWithoutCronjobInput
|
|
@@ -30218,6 +30284,8 @@ export namespace Prisma {
|
|
|
30218
30284
|
workflow_input_json?: string | null
|
|
30219
30285
|
cron_expression: string
|
|
30220
30286
|
timezone: string
|
|
30287
|
+
monitor_timeout_value?: number
|
|
30288
|
+
monitor_timeout_unit?: string
|
|
30221
30289
|
created_at: bigint | number
|
|
30222
30290
|
updated_at: bigint | number
|
|
30223
30291
|
runs?: cronjob_runsUncheckedCreateNestedManyWithoutCronjobInput
|
|
@@ -30429,6 +30497,8 @@ export namespace Prisma {
|
|
|
30429
30497
|
workflow_input_json?: StringNullableFilter<"cronjobs"> | string | null
|
|
30430
30498
|
cron_expression?: StringFilter<"cronjobs"> | string
|
|
30431
30499
|
timezone?: StringFilter<"cronjobs"> | string
|
|
30500
|
+
monitor_timeout_value?: FloatFilter<"cronjobs"> | number
|
|
30501
|
+
monitor_timeout_unit?: StringFilter<"cronjobs"> | string
|
|
30432
30502
|
created_at?: BigIntFilter<"cronjobs"> | bigint | number
|
|
30433
30503
|
updated_at?: BigIntFilter<"cronjobs"> | bigint | number
|
|
30434
30504
|
}
|
|
@@ -31304,6 +31374,8 @@ export namespace Prisma {
|
|
|
31304
31374
|
workflow_input_json?: string | null
|
|
31305
31375
|
cron_expression: string
|
|
31306
31376
|
timezone: string
|
|
31377
|
+
monitor_timeout_value?: number
|
|
31378
|
+
monitor_timeout_unit?: string
|
|
31307
31379
|
created_at: bigint | number
|
|
31308
31380
|
updated_at: bigint | number
|
|
31309
31381
|
user: usersCreateNestedOneWithoutCronjobsInput
|
|
@@ -31321,6 +31393,8 @@ export namespace Prisma {
|
|
|
31321
31393
|
workflow_input_json?: string | null
|
|
31322
31394
|
cron_expression: string
|
|
31323
31395
|
timezone: string
|
|
31396
|
+
monitor_timeout_value?: number
|
|
31397
|
+
monitor_timeout_unit?: string
|
|
31324
31398
|
created_at: bigint | number
|
|
31325
31399
|
updated_at: bigint | number
|
|
31326
31400
|
}
|
|
@@ -31449,6 +31523,8 @@ export namespace Prisma {
|
|
|
31449
31523
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31450
31524
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
31451
31525
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
31526
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
31527
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
31452
31528
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
31453
31529
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
31454
31530
|
user?: usersUpdateOneRequiredWithoutCronjobsNestedInput
|
|
@@ -31466,6 +31542,8 @@ export namespace Prisma {
|
|
|
31466
31542
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31467
31543
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
31468
31544
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
31545
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
31546
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
31469
31547
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
31470
31548
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
31471
31549
|
}
|
|
@@ -32375,6 +32453,8 @@ export namespace Prisma {
|
|
|
32375
32453
|
workflow_input_json?: string | null
|
|
32376
32454
|
cron_expression: string
|
|
32377
32455
|
timezone: string
|
|
32456
|
+
monitor_timeout_value?: number
|
|
32457
|
+
monitor_timeout_unit?: string
|
|
32378
32458
|
created_at: bigint | number
|
|
32379
32459
|
updated_at: bigint | number
|
|
32380
32460
|
}
|
|
@@ -32504,6 +32584,8 @@ export namespace Prisma {
|
|
|
32504
32584
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
32505
32585
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
32506
32586
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
32587
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
32588
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
32507
32589
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
32508
32590
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
32509
32591
|
runs?: cronjob_runsUpdateManyWithoutCronjobNestedInput
|
|
@@ -32520,6 +32602,8 @@ export namespace Prisma {
|
|
|
32520
32602
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
32521
32603
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
32522
32604
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
32605
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
32606
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
32523
32607
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
32524
32608
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
32525
32609
|
runs?: cronjob_runsUncheckedUpdateManyWithoutCronjobNestedInput
|
|
@@ -32536,6 +32620,8 @@ export namespace Prisma {
|
|
|
32536
32620
|
workflow_input_json?: NullableStringFieldUpdateOperationsInput | string | null
|
|
32537
32621
|
cron_expression?: StringFieldUpdateOperationsInput | string
|
|
32538
32622
|
timezone?: StringFieldUpdateOperationsInput | string
|
|
32623
|
+
monitor_timeout_value?: FloatFieldUpdateOperationsInput | number
|
|
32624
|
+
monitor_timeout_unit?: StringFieldUpdateOperationsInput | string
|
|
32539
32625
|
created_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
32540
32626
|
updated_at?: BigIntFieldUpdateOperationsInput | bigint | number
|
|
32541
32627
|
}
|