procbay-schema 1.0.174 → 1.0.176
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/package.json +1 -1
- package/prisma/json/core-data/serial-number-config.json +6 -0
- package/prisma/migrations/20260518124524_added_new_template_builder_changes/migration.sql +26 -0
- package/prisma/schema.prisma +13 -2
- package/src/prisma/edge.js +14 -3
- package/src/prisma/index-browser.js +11 -0
- package/src/prisma/index.d.ts +143 -41
- package/src/prisma/index.js +14 -3
- package/src/prisma/package.json +1 -1
- package/src/prisma/schema.prisma +12 -1
- package/src/prisma/wasm.js +11 -0
- package/prisma/migrations/20260515130204_updated_user_approval_management_schema/migration.sql +0 -55
|
@@ -734,6 +734,7 @@ exports.Prisma.TemplateScalarFieldEnum = {
|
|
|
734
734
|
template_code: 'template_code',
|
|
735
735
|
template_name: 'template_name',
|
|
736
736
|
template_type: 'template_type',
|
|
737
|
+
is_default: 'is_default',
|
|
737
738
|
currency_id: 'currency_id',
|
|
738
739
|
is_active: 'is_active',
|
|
739
740
|
is_deleted: 'is_deleted',
|
|
@@ -2319,6 +2320,16 @@ exports.ApprovalDelegationStatusEnum = exports.$Enums.ApprovalDelegationStatusEn
|
|
|
2319
2320
|
CANCELLED: 'CANCELLED'
|
|
2320
2321
|
};
|
|
2321
2322
|
|
|
2323
|
+
exports.TemplateType = exports.$Enums.TemplateType = {
|
|
2324
|
+
RFQ: 'RFQ',
|
|
2325
|
+
RFI: 'RFI',
|
|
2326
|
+
RFP: 'RFP',
|
|
2327
|
+
RAUC: 'RAUC',
|
|
2328
|
+
FAUC: 'FAUC',
|
|
2329
|
+
BOQ_WITH_CATEGORY: 'BOQ_WITH_CATEGORY',
|
|
2330
|
+
BOQ_WITHOUT_CATEGORY: 'BOQ_WITHOUT_CATEGORY'
|
|
2331
|
+
};
|
|
2332
|
+
|
|
2322
2333
|
exports.FieldType = exports.$Enums.FieldType = {
|
|
2323
2334
|
TEXT: 'TEXT',
|
|
2324
2335
|
NUMBER: 'NUMBER',
|
package/src/prisma/index.d.ts
CHANGED
|
@@ -720,6 +720,19 @@ export const ApprovalDelegationStatusEnum: {
|
|
|
720
720
|
export type ApprovalDelegationStatusEnum = (typeof ApprovalDelegationStatusEnum)[keyof typeof ApprovalDelegationStatusEnum]
|
|
721
721
|
|
|
722
722
|
|
|
723
|
+
export const TemplateType: {
|
|
724
|
+
RFQ: 'RFQ',
|
|
725
|
+
RFI: 'RFI',
|
|
726
|
+
RFP: 'RFP',
|
|
727
|
+
RAUC: 'RAUC',
|
|
728
|
+
FAUC: 'FAUC',
|
|
729
|
+
BOQ_WITH_CATEGORY: 'BOQ_WITH_CATEGORY',
|
|
730
|
+
BOQ_WITHOUT_CATEGORY: 'BOQ_WITHOUT_CATEGORY'
|
|
731
|
+
};
|
|
732
|
+
|
|
733
|
+
export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType]
|
|
734
|
+
|
|
735
|
+
|
|
723
736
|
export const FieldType: {
|
|
724
737
|
TEXT: 'TEXT',
|
|
725
738
|
NUMBER: 'NUMBER',
|
|
@@ -1347,6 +1360,10 @@ export type ApprovalDelegationStatusEnum = $Enums.ApprovalDelegationStatusEnum
|
|
|
1347
1360
|
|
|
1348
1361
|
export const ApprovalDelegationStatusEnum: typeof $Enums.ApprovalDelegationStatusEnum
|
|
1349
1362
|
|
|
1363
|
+
export type TemplateType = $Enums.TemplateType
|
|
1364
|
+
|
|
1365
|
+
export const TemplateType: typeof $Enums.TemplateType
|
|
1366
|
+
|
|
1350
1367
|
export type FieldType = $Enums.FieldType
|
|
1351
1368
|
|
|
1352
1369
|
export const FieldType: typeof $Enums.FieldType
|
|
@@ -59814,6 +59831,7 @@ export namespace Prisma {
|
|
|
59814
59831
|
uuid: string | null
|
|
59815
59832
|
template_code: string | null
|
|
59816
59833
|
template_name: string | null
|
|
59834
|
+
is_default: boolean | null
|
|
59817
59835
|
currency_id: number | null
|
|
59818
59836
|
is_active: boolean | null
|
|
59819
59837
|
is_deleted: boolean | null
|
|
@@ -59830,6 +59848,7 @@ export namespace Prisma {
|
|
|
59830
59848
|
uuid: string | null
|
|
59831
59849
|
template_code: string | null
|
|
59832
59850
|
template_name: string | null
|
|
59851
|
+
is_default: boolean | null
|
|
59833
59852
|
currency_id: number | null
|
|
59834
59853
|
is_active: boolean | null
|
|
59835
59854
|
is_deleted: boolean | null
|
|
@@ -59847,6 +59866,7 @@ export namespace Prisma {
|
|
|
59847
59866
|
template_code: number
|
|
59848
59867
|
template_name: number
|
|
59849
59868
|
template_type: number
|
|
59869
|
+
is_default: number
|
|
59850
59870
|
currency_id: number
|
|
59851
59871
|
is_active: number
|
|
59852
59872
|
is_deleted: number
|
|
@@ -59881,6 +59901,7 @@ export namespace Prisma {
|
|
|
59881
59901
|
uuid?: true
|
|
59882
59902
|
template_code?: true
|
|
59883
59903
|
template_name?: true
|
|
59904
|
+
is_default?: true
|
|
59884
59905
|
currency_id?: true
|
|
59885
59906
|
is_active?: true
|
|
59886
59907
|
is_deleted?: true
|
|
@@ -59897,6 +59918,7 @@ export namespace Prisma {
|
|
|
59897
59918
|
uuid?: true
|
|
59898
59919
|
template_code?: true
|
|
59899
59920
|
template_name?: true
|
|
59921
|
+
is_default?: true
|
|
59900
59922
|
currency_id?: true
|
|
59901
59923
|
is_active?: true
|
|
59902
59924
|
is_deleted?: true
|
|
@@ -59914,6 +59936,7 @@ export namespace Prisma {
|
|
|
59914
59936
|
template_code?: true
|
|
59915
59937
|
template_name?: true
|
|
59916
59938
|
template_type?: true
|
|
59939
|
+
is_default?: true
|
|
59917
59940
|
currency_id?: true
|
|
59918
59941
|
is_active?: true
|
|
59919
59942
|
is_deleted?: true
|
|
@@ -60017,7 +60040,8 @@ export namespace Prisma {
|
|
|
60017
60040
|
uuid: string | null
|
|
60018
60041
|
template_code: string | null
|
|
60019
60042
|
template_name: string | null
|
|
60020
|
-
template_type:
|
|
60043
|
+
template_type: $Enums.TemplateType[]
|
|
60044
|
+
is_default: boolean | null
|
|
60021
60045
|
currency_id: number | null
|
|
60022
60046
|
is_active: boolean | null
|
|
60023
60047
|
is_deleted: boolean | null
|
|
@@ -60054,6 +60078,7 @@ export namespace Prisma {
|
|
|
60054
60078
|
template_code?: boolean
|
|
60055
60079
|
template_name?: boolean
|
|
60056
60080
|
template_type?: boolean
|
|
60081
|
+
is_default?: boolean
|
|
60057
60082
|
currency_id?: boolean
|
|
60058
60083
|
is_active?: boolean
|
|
60059
60084
|
is_deleted?: boolean
|
|
@@ -60077,6 +60102,7 @@ export namespace Prisma {
|
|
|
60077
60102
|
template_code?: boolean
|
|
60078
60103
|
template_name?: boolean
|
|
60079
60104
|
template_type?: boolean
|
|
60105
|
+
is_default?: boolean
|
|
60080
60106
|
currency_id?: boolean
|
|
60081
60107
|
is_active?: boolean
|
|
60082
60108
|
is_deleted?: boolean
|
|
@@ -60096,6 +60122,7 @@ export namespace Prisma {
|
|
|
60096
60122
|
template_code?: boolean
|
|
60097
60123
|
template_name?: boolean
|
|
60098
60124
|
template_type?: boolean
|
|
60125
|
+
is_default?: boolean
|
|
60099
60126
|
currency_id?: boolean
|
|
60100
60127
|
is_active?: boolean
|
|
60101
60128
|
is_deleted?: boolean
|
|
@@ -60115,6 +60142,7 @@ export namespace Prisma {
|
|
|
60115
60142
|
template_code?: boolean
|
|
60116
60143
|
template_name?: boolean
|
|
60117
60144
|
template_type?: boolean
|
|
60145
|
+
is_default?: boolean
|
|
60118
60146
|
currency_id?: boolean
|
|
60119
60147
|
is_active?: boolean
|
|
60120
60148
|
is_deleted?: boolean
|
|
@@ -60126,7 +60154,7 @@ export namespace Prisma {
|
|
|
60126
60154
|
deleted_by?: boolean
|
|
60127
60155
|
}
|
|
60128
60156
|
|
|
60129
|
-
export type TemplateOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "template_code" | "template_name" | "template_type" | "currency_id" | "is_active" | "is_deleted" | "created_at" | "created_by" | "updated_at" | "updated_by" | "deleted_at" | "deleted_by", ExtArgs["result"]["template"]>
|
|
60157
|
+
export type TemplateOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "template_code" | "template_name" | "template_type" | "is_default" | "currency_id" | "is_active" | "is_deleted" | "created_at" | "created_by" | "updated_at" | "updated_by" | "deleted_at" | "deleted_by", ExtArgs["result"]["template"]>
|
|
60130
60158
|
export type TemplateInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
60131
60159
|
currency?: boolean | Template$currencyArgs<ExtArgs>
|
|
60132
60160
|
fields?: boolean | Template$fieldsArgs<ExtArgs>
|
|
@@ -60158,7 +60186,8 @@ export namespace Prisma {
|
|
|
60158
60186
|
uuid: string | null
|
|
60159
60187
|
template_code: string | null
|
|
60160
60188
|
template_name: string | null
|
|
60161
|
-
template_type:
|
|
60189
|
+
template_type: $Enums.TemplateType[]
|
|
60190
|
+
is_default: boolean | null
|
|
60162
60191
|
currency_id: number | null
|
|
60163
60192
|
is_active: boolean | null
|
|
60164
60193
|
is_deleted: boolean | null
|
|
@@ -60600,7 +60629,8 @@ export namespace Prisma {
|
|
|
60600
60629
|
readonly uuid: FieldRef<"Template", 'String'>
|
|
60601
60630
|
readonly template_code: FieldRef<"Template", 'String'>
|
|
60602
60631
|
readonly template_name: FieldRef<"Template", 'String'>
|
|
60603
|
-
readonly template_type: FieldRef<"Template", '
|
|
60632
|
+
readonly template_type: FieldRef<"Template", 'TemplateType[]'>
|
|
60633
|
+
readonly is_default: FieldRef<"Template", 'Boolean'>
|
|
60604
60634
|
readonly currency_id: FieldRef<"Template", 'Int'>
|
|
60605
60635
|
readonly is_active: FieldRef<"Template", 'Boolean'>
|
|
60606
60636
|
readonly is_deleted: FieldRef<"Template", 'Boolean'>
|
|
@@ -163793,6 +163823,7 @@ export namespace Prisma {
|
|
|
163793
163823
|
template_code: 'template_code',
|
|
163794
163824
|
template_name: 'template_name',
|
|
163795
163825
|
template_type: 'template_type',
|
|
163826
|
+
is_default: 'is_default',
|
|
163796
163827
|
currency_id: 'currency_id',
|
|
163797
163828
|
is_active: 'is_active',
|
|
163798
163829
|
is_deleted: 'is_deleted',
|
|
@@ -165798,6 +165829,20 @@ export namespace Prisma {
|
|
|
165798
165829
|
|
|
165799
165830
|
|
|
165800
165831
|
|
|
165832
|
+
/**
|
|
165833
|
+
* Reference to a field of type 'TemplateType[]'
|
|
165834
|
+
*/
|
|
165835
|
+
export type ListEnumTemplateTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TemplateType[]'>
|
|
165836
|
+
|
|
165837
|
+
|
|
165838
|
+
|
|
165839
|
+
/**
|
|
165840
|
+
* Reference to a field of type 'TemplateType'
|
|
165841
|
+
*/
|
|
165842
|
+
export type EnumTemplateTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TemplateType'>
|
|
165843
|
+
|
|
165844
|
+
|
|
165845
|
+
|
|
165801
165846
|
/**
|
|
165802
165847
|
* Reference to a field of type 'FieldType'
|
|
165803
165848
|
*/
|
|
@@ -170520,7 +170565,8 @@ export namespace Prisma {
|
|
|
170520
170565
|
uuid?: StringNullableFilter<"Template"> | string | null
|
|
170521
170566
|
template_code?: StringNullableFilter<"Template"> | string | null
|
|
170522
170567
|
template_name?: StringNullableFilter<"Template"> | string | null
|
|
170523
|
-
template_type?:
|
|
170568
|
+
template_type?: EnumTemplateTypeNullableListFilter<"Template">
|
|
170569
|
+
is_default?: BoolNullableFilter<"Template"> | boolean | null
|
|
170524
170570
|
currency_id?: IntNullableFilter<"Template"> | number | null
|
|
170525
170571
|
is_active?: BoolNullableFilter<"Template"> | boolean | null
|
|
170526
170572
|
is_deleted?: BoolNullableFilter<"Template"> | boolean | null
|
|
@@ -170542,7 +170588,8 @@ export namespace Prisma {
|
|
|
170542
170588
|
uuid?: SortOrderInput | SortOrder
|
|
170543
170589
|
template_code?: SortOrderInput | SortOrder
|
|
170544
170590
|
template_name?: SortOrderInput | SortOrder
|
|
170545
|
-
template_type?:
|
|
170591
|
+
template_type?: SortOrder
|
|
170592
|
+
is_default?: SortOrderInput | SortOrder
|
|
170546
170593
|
currency_id?: SortOrderInput | SortOrder
|
|
170547
170594
|
is_active?: SortOrderInput | SortOrder
|
|
170548
170595
|
is_deleted?: SortOrderInput | SortOrder
|
|
@@ -170567,7 +170614,8 @@ export namespace Prisma {
|
|
|
170567
170614
|
AND?: TemplateWhereInput | TemplateWhereInput[]
|
|
170568
170615
|
OR?: TemplateWhereInput[]
|
|
170569
170616
|
NOT?: TemplateWhereInput | TemplateWhereInput[]
|
|
170570
|
-
template_type?:
|
|
170617
|
+
template_type?: EnumTemplateTypeNullableListFilter<"Template">
|
|
170618
|
+
is_default?: BoolNullableFilter<"Template"> | boolean | null
|
|
170571
170619
|
currency_id?: IntNullableFilter<"Template"> | number | null
|
|
170572
170620
|
is_active?: BoolNullableFilter<"Template"> | boolean | null
|
|
170573
170621
|
is_deleted?: BoolNullableFilter<"Template"> | boolean | null
|
|
@@ -170589,7 +170637,8 @@ export namespace Prisma {
|
|
|
170589
170637
|
uuid?: SortOrderInput | SortOrder
|
|
170590
170638
|
template_code?: SortOrderInput | SortOrder
|
|
170591
170639
|
template_name?: SortOrderInput | SortOrder
|
|
170592
|
-
template_type?:
|
|
170640
|
+
template_type?: SortOrder
|
|
170641
|
+
is_default?: SortOrderInput | SortOrder
|
|
170593
170642
|
currency_id?: SortOrderInput | SortOrder
|
|
170594
170643
|
is_active?: SortOrderInput | SortOrder
|
|
170595
170644
|
is_deleted?: SortOrderInput | SortOrder
|
|
@@ -170614,7 +170663,8 @@ export namespace Prisma {
|
|
|
170614
170663
|
uuid?: StringNullableWithAggregatesFilter<"Template"> | string | null
|
|
170615
170664
|
template_code?: StringNullableWithAggregatesFilter<"Template"> | string | null
|
|
170616
170665
|
template_name?: StringNullableWithAggregatesFilter<"Template"> | string | null
|
|
170617
|
-
template_type?:
|
|
170666
|
+
template_type?: EnumTemplateTypeNullableListFilter<"Template">
|
|
170667
|
+
is_default?: BoolNullableWithAggregatesFilter<"Template"> | boolean | null
|
|
170618
170668
|
currency_id?: IntNullableWithAggregatesFilter<"Template"> | number | null
|
|
170619
170669
|
is_active?: BoolNullableWithAggregatesFilter<"Template"> | boolean | null
|
|
170620
170670
|
is_deleted?: BoolNullableWithAggregatesFilter<"Template"> | boolean | null
|
|
@@ -184145,7 +184195,8 @@ export namespace Prisma {
|
|
|
184145
184195
|
uuid?: string | null
|
|
184146
184196
|
template_code?: string | null
|
|
184147
184197
|
template_name?: string | null
|
|
184148
|
-
template_type?:
|
|
184198
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
184199
|
+
is_default?: boolean | null
|
|
184149
184200
|
is_active?: boolean | null
|
|
184150
184201
|
is_deleted?: boolean | null
|
|
184151
184202
|
created_at?: Date | string | null
|
|
@@ -184165,7 +184216,8 @@ export namespace Prisma {
|
|
|
184165
184216
|
uuid?: string | null
|
|
184166
184217
|
template_code?: string | null
|
|
184167
184218
|
template_name?: string | null
|
|
184168
|
-
template_type?:
|
|
184219
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
184220
|
+
is_default?: boolean | null
|
|
184169
184221
|
currency_id?: number | null
|
|
184170
184222
|
is_active?: boolean | null
|
|
184171
184223
|
is_deleted?: boolean | null
|
|
@@ -184184,7 +184236,8 @@ export namespace Prisma {
|
|
|
184184
184236
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184185
184237
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184186
184238
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184187
|
-
template_type?:
|
|
184239
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
184240
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184188
184241
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184189
184242
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184190
184243
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -184204,7 +184257,8 @@ export namespace Prisma {
|
|
|
184204
184257
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184205
184258
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184206
184259
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184207
|
-
template_type?:
|
|
184260
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
184261
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184208
184262
|
currency_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
184209
184263
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184210
184264
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -184224,7 +184278,8 @@ export namespace Prisma {
|
|
|
184224
184278
|
uuid?: string | null
|
|
184225
184279
|
template_code?: string | null
|
|
184226
184280
|
template_name?: string | null
|
|
184227
|
-
template_type?:
|
|
184281
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
184282
|
+
is_default?: boolean | null
|
|
184228
184283
|
currency_id?: number | null
|
|
184229
184284
|
is_active?: boolean | null
|
|
184230
184285
|
is_deleted?: boolean | null
|
|
@@ -184240,7 +184295,8 @@ export namespace Prisma {
|
|
|
184240
184295
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184241
184296
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184242
184297
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184243
|
-
template_type?:
|
|
184298
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
184299
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184244
184300
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184245
184301
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184246
184302
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -184255,7 +184311,8 @@ export namespace Prisma {
|
|
|
184255
184311
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184256
184312
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184257
184313
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
184258
|
-
template_type?:
|
|
184314
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
184315
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184259
184316
|
currency_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
184260
184317
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
184261
184318
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -198081,6 +198138,14 @@ export namespace Prisma {
|
|
|
198081
198138
|
deleted_by?: SortOrder
|
|
198082
198139
|
}
|
|
198083
198140
|
|
|
198141
|
+
export type EnumTemplateTypeNullableListFilter<$PrismaModel = never> = {
|
|
198142
|
+
equals?: $Enums.TemplateType[] | ListEnumTemplateTypeFieldRefInput<$PrismaModel> | null
|
|
198143
|
+
has?: $Enums.TemplateType | EnumTemplateTypeFieldRefInput<$PrismaModel> | null
|
|
198144
|
+
hasEvery?: $Enums.TemplateType[] | ListEnumTemplateTypeFieldRefInput<$PrismaModel>
|
|
198145
|
+
hasSome?: $Enums.TemplateType[] | ListEnumTemplateTypeFieldRefInput<$PrismaModel>
|
|
198146
|
+
isEmpty?: boolean
|
|
198147
|
+
}
|
|
198148
|
+
|
|
198084
198149
|
export type CurrencyNullableScalarRelationFilter = {
|
|
198085
198150
|
is?: CurrencyWhereInput | null
|
|
198086
198151
|
isNot?: CurrencyWhereInput | null
|
|
@@ -198112,6 +198177,7 @@ export namespace Prisma {
|
|
|
198112
198177
|
template_code?: SortOrder
|
|
198113
198178
|
template_name?: SortOrder
|
|
198114
198179
|
template_type?: SortOrder
|
|
198180
|
+
is_default?: SortOrder
|
|
198115
198181
|
currency_id?: SortOrder
|
|
198116
198182
|
is_active?: SortOrder
|
|
198117
198183
|
is_deleted?: SortOrder
|
|
@@ -198136,6 +198202,7 @@ export namespace Prisma {
|
|
|
198136
198202
|
uuid?: SortOrder
|
|
198137
198203
|
template_code?: SortOrder
|
|
198138
198204
|
template_name?: SortOrder
|
|
198205
|
+
is_default?: SortOrder
|
|
198139
198206
|
currency_id?: SortOrder
|
|
198140
198207
|
is_active?: SortOrder
|
|
198141
198208
|
is_deleted?: SortOrder
|
|
@@ -198152,6 +198219,7 @@ export namespace Prisma {
|
|
|
198152
198219
|
uuid?: SortOrder
|
|
198153
198220
|
template_code?: SortOrder
|
|
198154
198221
|
template_name?: SortOrder
|
|
198222
|
+
is_default?: SortOrder
|
|
198155
198223
|
currency_id?: SortOrder
|
|
198156
198224
|
is_active?: SortOrder
|
|
198157
198225
|
is_deleted?: SortOrder
|
|
@@ -210554,6 +210622,10 @@ export namespace Prisma {
|
|
|
210554
210622
|
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutApproval_delegation_delegatesInput, UserUpdateWithoutApproval_delegation_delegatesInput>, UserUncheckedUpdateWithoutApproval_delegation_delegatesInput>
|
|
210555
210623
|
}
|
|
210556
210624
|
|
|
210625
|
+
export type TemplateCreatetemplate_typeInput = {
|
|
210626
|
+
set: $Enums.TemplateType[]
|
|
210627
|
+
}
|
|
210628
|
+
|
|
210557
210629
|
export type CurrencyCreateNestedOneWithoutTemplateInput = {
|
|
210558
210630
|
create?: XOR<CurrencyCreateWithoutTemplateInput, CurrencyUncheckedCreateWithoutTemplateInput>
|
|
210559
210631
|
connectOrCreate?: CurrencyCreateOrConnectWithoutTemplateInput
|
|
@@ -210608,6 +210680,11 @@ export namespace Prisma {
|
|
|
210608
210680
|
connect?: TemplateStrategiesWhereUniqueInput | TemplateStrategiesWhereUniqueInput[]
|
|
210609
210681
|
}
|
|
210610
210682
|
|
|
210683
|
+
export type TemplateUpdatetemplate_typeInput = {
|
|
210684
|
+
set?: $Enums.TemplateType[]
|
|
210685
|
+
push?: $Enums.TemplateType | $Enums.TemplateType[]
|
|
210686
|
+
}
|
|
210687
|
+
|
|
210611
210688
|
export type CurrencyUpdateOneWithoutTemplateNestedInput = {
|
|
210612
210689
|
create?: XOR<CurrencyCreateWithoutTemplateInput, CurrencyUncheckedCreateWithoutTemplateInput>
|
|
210613
210690
|
connectOrCreate?: CurrencyCreateOrConnectWithoutTemplateInput
|
|
@@ -219681,7 +219758,8 @@ export namespace Prisma {
|
|
|
219681
219758
|
uuid?: string | null
|
|
219682
219759
|
template_code?: string | null
|
|
219683
219760
|
template_name?: string | null
|
|
219684
|
-
template_type?:
|
|
219761
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
219762
|
+
is_default?: boolean | null
|
|
219685
219763
|
is_active?: boolean | null
|
|
219686
219764
|
is_deleted?: boolean | null
|
|
219687
219765
|
created_at?: Date | string | null
|
|
@@ -219700,7 +219778,8 @@ export namespace Prisma {
|
|
|
219700
219778
|
uuid?: string | null
|
|
219701
219779
|
template_code?: string | null
|
|
219702
219780
|
template_name?: string | null
|
|
219703
|
-
template_type?:
|
|
219781
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
219782
|
+
is_default?: boolean | null
|
|
219704
219783
|
currency_id?: number | null
|
|
219705
219784
|
is_active?: boolean | null
|
|
219706
219785
|
is_deleted?: boolean | null
|
|
@@ -221483,7 +221562,8 @@ export namespace Prisma {
|
|
|
221483
221562
|
uuid?: StringNullableFilter<"Template"> | string | null
|
|
221484
221563
|
template_code?: StringNullableFilter<"Template"> | string | null
|
|
221485
221564
|
template_name?: StringNullableFilter<"Template"> | string | null
|
|
221486
|
-
template_type?:
|
|
221565
|
+
template_type?: EnumTemplateTypeNullableListFilter<"Template">
|
|
221566
|
+
is_default?: BoolNullableFilter<"Template"> | boolean | null
|
|
221487
221567
|
currency_id?: IntNullableFilter<"Template"> | number | null
|
|
221488
221568
|
is_active?: BoolNullableFilter<"Template"> | boolean | null
|
|
221489
221569
|
is_deleted?: BoolNullableFilter<"Template"> | boolean | null
|
|
@@ -237853,7 +237933,8 @@ export namespace Prisma {
|
|
|
237853
237933
|
uuid?: string | null
|
|
237854
237934
|
template_code?: string | null
|
|
237855
237935
|
template_name?: string | null
|
|
237856
|
-
template_type?:
|
|
237936
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
237937
|
+
is_default?: boolean | null
|
|
237857
237938
|
is_active?: boolean | null
|
|
237858
237939
|
is_deleted?: boolean | null
|
|
237859
237940
|
created_at?: Date | string | null
|
|
@@ -237872,7 +237953,8 @@ export namespace Prisma {
|
|
|
237872
237953
|
uuid?: string | null
|
|
237873
237954
|
template_code?: string | null
|
|
237874
237955
|
template_name?: string | null
|
|
237875
|
-
template_type?:
|
|
237956
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
237957
|
+
is_default?: boolean | null
|
|
237876
237958
|
currency_id?: number | null
|
|
237877
237959
|
is_active?: boolean | null
|
|
237878
237960
|
is_deleted?: boolean | null
|
|
@@ -237944,7 +238026,8 @@ export namespace Prisma {
|
|
|
237944
238026
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
237945
238027
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
237946
238028
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
237947
|
-
template_type?:
|
|
238029
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
238030
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
237948
238031
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
237949
238032
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
237950
238033
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -237963,7 +238046,8 @@ export namespace Prisma {
|
|
|
237963
238046
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
237964
238047
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
237965
238048
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
237966
|
-
template_type?:
|
|
238049
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
238050
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
237967
238051
|
currency_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
237968
238052
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
237969
238053
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -238025,7 +238109,8 @@ export namespace Prisma {
|
|
|
238025
238109
|
uuid?: string | null
|
|
238026
238110
|
template_code?: string | null
|
|
238027
238111
|
template_name?: string | null
|
|
238028
|
-
template_type?:
|
|
238112
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
238113
|
+
is_default?: boolean | null
|
|
238029
238114
|
is_active?: boolean | null
|
|
238030
238115
|
is_deleted?: boolean | null
|
|
238031
238116
|
created_at?: Date | string | null
|
|
@@ -238044,7 +238129,8 @@ export namespace Prisma {
|
|
|
238044
238129
|
uuid?: string | null
|
|
238045
238130
|
template_code?: string | null
|
|
238046
238131
|
template_name?: string | null
|
|
238047
|
-
template_type?:
|
|
238132
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
238133
|
+
is_default?: boolean | null
|
|
238048
238134
|
currency_id?: number | null
|
|
238049
238135
|
is_active?: boolean | null
|
|
238050
238136
|
is_deleted?: boolean | null
|
|
@@ -238078,7 +238164,8 @@ export namespace Prisma {
|
|
|
238078
238164
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
238079
238165
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
238080
238166
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
238081
|
-
template_type?:
|
|
238167
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
238168
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
238082
238169
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
238083
238170
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
238084
238171
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -238097,7 +238184,8 @@ export namespace Prisma {
|
|
|
238097
238184
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
238098
238185
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
238099
238186
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
238100
|
-
template_type?:
|
|
238187
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
238188
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
238101
238189
|
currency_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
238102
238190
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
238103
238191
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -238266,7 +238354,8 @@ export namespace Prisma {
|
|
|
238266
238354
|
uuid?: string | null
|
|
238267
238355
|
template_code?: string | null
|
|
238268
238356
|
template_name?: string | null
|
|
238269
|
-
template_type?:
|
|
238357
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
238358
|
+
is_default?: boolean | null
|
|
238270
238359
|
is_active?: boolean | null
|
|
238271
238360
|
is_deleted?: boolean | null
|
|
238272
238361
|
created_at?: Date | string | null
|
|
@@ -238285,7 +238374,8 @@ export namespace Prisma {
|
|
|
238285
238374
|
uuid?: string | null
|
|
238286
238375
|
template_code?: string | null
|
|
238287
238376
|
template_name?: string | null
|
|
238288
|
-
template_type?:
|
|
238377
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
238378
|
+
is_default?: boolean | null
|
|
238289
238379
|
currency_id?: number | null
|
|
238290
238380
|
is_active?: boolean | null
|
|
238291
238381
|
is_deleted?: boolean | null
|
|
@@ -239458,7 +239548,8 @@ export namespace Prisma {
|
|
|
239458
239548
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239459
239549
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239460
239550
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239461
|
-
template_type?:
|
|
239551
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
239552
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
239462
239553
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
239463
239554
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
239464
239555
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -239477,7 +239568,8 @@ export namespace Prisma {
|
|
|
239477
239568
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239478
239569
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239479
239570
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239480
|
-
template_type?:
|
|
239571
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
239572
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
239481
239573
|
currency_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
239482
239574
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
239483
239575
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -243630,7 +243722,8 @@ export namespace Prisma {
|
|
|
243630
243722
|
uuid?: string | null
|
|
243631
243723
|
template_code?: string | null
|
|
243632
243724
|
template_name?: string | null
|
|
243633
|
-
template_type?:
|
|
243725
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
243726
|
+
is_default?: boolean | null
|
|
243634
243727
|
is_active?: boolean | null
|
|
243635
243728
|
is_deleted?: boolean | null
|
|
243636
243729
|
created_at?: Date | string | null
|
|
@@ -243649,7 +243742,8 @@ export namespace Prisma {
|
|
|
243649
243742
|
uuid?: string | null
|
|
243650
243743
|
template_code?: string | null
|
|
243651
243744
|
template_name?: string | null
|
|
243652
|
-
template_type?:
|
|
243745
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
243746
|
+
is_default?: boolean | null
|
|
243653
243747
|
is_active?: boolean | null
|
|
243654
243748
|
is_deleted?: boolean | null
|
|
243655
243749
|
created_at?: Date | string | null
|
|
@@ -270985,7 +271079,8 @@ export namespace Prisma {
|
|
|
270985
271079
|
uuid?: string | null
|
|
270986
271080
|
template_code?: string | null
|
|
270987
271081
|
template_name?: string | null
|
|
270988
|
-
template_type?:
|
|
271082
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
271083
|
+
is_default?: boolean | null
|
|
270989
271084
|
currency_id?: number | null
|
|
270990
271085
|
is_active?: boolean | null
|
|
270991
271086
|
is_deleted?: boolean | null
|
|
@@ -272401,7 +272496,8 @@ export namespace Prisma {
|
|
|
272401
272496
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272402
272497
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272403
272498
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272404
|
-
template_type?:
|
|
272499
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
272500
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
272405
272501
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
272406
272502
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
272407
272503
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -272420,7 +272516,8 @@ export namespace Prisma {
|
|
|
272420
272516
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272421
272517
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272422
272518
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272423
|
-
template_type?:
|
|
272519
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
272520
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
272424
272521
|
currency_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272425
272522
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
272426
272523
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -272439,7 +272536,8 @@ export namespace Prisma {
|
|
|
272439
272536
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272440
272537
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272441
272538
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272442
|
-
template_type?:
|
|
272539
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
272540
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
272443
272541
|
currency_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272444
272542
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
272445
272543
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -281491,7 +281589,8 @@ export namespace Prisma {
|
|
|
281491
281589
|
uuid?: string | null
|
|
281492
281590
|
template_code?: string | null
|
|
281493
281591
|
template_name?: string | null
|
|
281494
|
-
template_type?:
|
|
281592
|
+
template_type?: TemplateCreatetemplate_typeInput | $Enums.TemplateType[]
|
|
281593
|
+
is_default?: boolean | null
|
|
281495
281594
|
is_active?: boolean | null
|
|
281496
281595
|
is_deleted?: boolean | null
|
|
281497
281596
|
created_at?: Date | string | null
|
|
@@ -281506,7 +281605,8 @@ export namespace Prisma {
|
|
|
281506
281605
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281507
281606
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281508
281607
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281509
|
-
template_type?:
|
|
281608
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
281609
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281510
281610
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281511
281611
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281512
281612
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -281525,7 +281625,8 @@ export namespace Prisma {
|
|
|
281525
281625
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281526
281626
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281527
281627
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281528
|
-
template_type?:
|
|
281628
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
281629
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281529
281630
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281530
281631
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281531
281632
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -281544,7 +281645,8 @@ export namespace Prisma {
|
|
|
281544
281645
|
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281545
281646
|
template_code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281546
281647
|
template_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
281547
|
-
template_type?:
|
|
281648
|
+
template_type?: TemplateUpdatetemplate_typeInput | $Enums.TemplateType[]
|
|
281649
|
+
is_default?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281548
281650
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281549
281651
|
is_deleted?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
281550
281652
|
created_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|