@be-pttmj/app-api 0.0.1 → 0.0.2
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/index.d.ts +136 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20599,15 +20599,20 @@ type AggregateCurrencies = {
|
|
|
20599
20599
|
};
|
|
20600
20600
|
type CurrenciesAvgAggregateOutputType = {
|
|
20601
20601
|
id: number | null;
|
|
20602
|
+
iso_decimal: number | null;
|
|
20602
20603
|
};
|
|
20603
20604
|
type CurrenciesSumAggregateOutputType = {
|
|
20604
20605
|
id: number | null;
|
|
20606
|
+
iso_decimal: number | null;
|
|
20605
20607
|
};
|
|
20606
20608
|
type CurrenciesMinAggregateOutputType = {
|
|
20607
20609
|
id: number | null;
|
|
20608
20610
|
logic_code: string | null;
|
|
20609
20611
|
code: string | null;
|
|
20610
20612
|
name: string | null;
|
|
20613
|
+
major_unit: string | null;
|
|
20614
|
+
minor_unit: string | null;
|
|
20615
|
+
iso_decimal: number | null;
|
|
20611
20616
|
symbol: string | null;
|
|
20612
20617
|
is_active: boolean | null;
|
|
20613
20618
|
is_prefix: boolean | null;
|
|
@@ -20622,6 +20627,9 @@ type CurrenciesMaxAggregateOutputType = {
|
|
|
20622
20627
|
logic_code: string | null;
|
|
20623
20628
|
code: string | null;
|
|
20624
20629
|
name: string | null;
|
|
20630
|
+
major_unit: string | null;
|
|
20631
|
+
minor_unit: string | null;
|
|
20632
|
+
iso_decimal: number | null;
|
|
20625
20633
|
symbol: string | null;
|
|
20626
20634
|
is_active: boolean | null;
|
|
20627
20635
|
is_prefix: boolean | null;
|
|
@@ -20636,6 +20644,9 @@ type CurrenciesCountAggregateOutputType = {
|
|
|
20636
20644
|
logic_code: number;
|
|
20637
20645
|
code: number;
|
|
20638
20646
|
name: number;
|
|
20647
|
+
major_unit: number;
|
|
20648
|
+
minor_unit: number;
|
|
20649
|
+
iso_decimal: number;
|
|
20639
20650
|
symbol: number;
|
|
20640
20651
|
is_active: number;
|
|
20641
20652
|
is_prefix: number;
|
|
@@ -20648,15 +20659,20 @@ type CurrenciesCountAggregateOutputType = {
|
|
|
20648
20659
|
};
|
|
20649
20660
|
type CurrenciesAvgAggregateInputType = {
|
|
20650
20661
|
id?: true;
|
|
20662
|
+
iso_decimal?: true;
|
|
20651
20663
|
};
|
|
20652
20664
|
type CurrenciesSumAggregateInputType = {
|
|
20653
20665
|
id?: true;
|
|
20666
|
+
iso_decimal?: true;
|
|
20654
20667
|
};
|
|
20655
20668
|
type CurrenciesMinAggregateInputType = {
|
|
20656
20669
|
id?: true;
|
|
20657
20670
|
logic_code?: true;
|
|
20658
20671
|
code?: true;
|
|
20659
20672
|
name?: true;
|
|
20673
|
+
major_unit?: true;
|
|
20674
|
+
minor_unit?: true;
|
|
20675
|
+
iso_decimal?: true;
|
|
20660
20676
|
symbol?: true;
|
|
20661
20677
|
is_active?: true;
|
|
20662
20678
|
is_prefix?: true;
|
|
@@ -20671,6 +20687,9 @@ type CurrenciesMaxAggregateInputType = {
|
|
|
20671
20687
|
logic_code?: true;
|
|
20672
20688
|
code?: true;
|
|
20673
20689
|
name?: true;
|
|
20690
|
+
major_unit?: true;
|
|
20691
|
+
minor_unit?: true;
|
|
20692
|
+
iso_decimal?: true;
|
|
20674
20693
|
symbol?: true;
|
|
20675
20694
|
is_active?: true;
|
|
20676
20695
|
is_prefix?: true;
|
|
@@ -20685,6 +20704,9 @@ type CurrenciesCountAggregateInputType = {
|
|
|
20685
20704
|
logic_code?: true;
|
|
20686
20705
|
code?: true;
|
|
20687
20706
|
name?: true;
|
|
20707
|
+
major_unit?: true;
|
|
20708
|
+
minor_unit?: true;
|
|
20709
|
+
iso_decimal?: true;
|
|
20688
20710
|
symbol?: true;
|
|
20689
20711
|
is_active?: true;
|
|
20690
20712
|
is_prefix?: true;
|
|
@@ -20774,6 +20796,9 @@ type CurrenciesGroupByOutputType = {
|
|
|
20774
20796
|
logic_code: string | null;
|
|
20775
20797
|
code: string | null;
|
|
20776
20798
|
name: string | null;
|
|
20799
|
+
major_unit: string | null;
|
|
20800
|
+
minor_unit: string | null;
|
|
20801
|
+
iso_decimal: number | null;
|
|
20777
20802
|
symbol: string | null;
|
|
20778
20803
|
is_active: boolean | null;
|
|
20779
20804
|
is_prefix: boolean | null;
|
|
@@ -20797,6 +20822,9 @@ type currenciesWhereInput = {
|
|
|
20797
20822
|
logic_code?: StringNullableFilter<"currencies"> | string | null;
|
|
20798
20823
|
code?: StringNullableFilter<"currencies"> | string | null;
|
|
20799
20824
|
name?: StringNullableFilter<"currencies"> | string | null;
|
|
20825
|
+
major_unit?: StringNullableFilter<"currencies"> | string | null;
|
|
20826
|
+
minor_unit?: StringNullableFilter<"currencies"> | string | null;
|
|
20827
|
+
iso_decimal?: IntNullableFilter<"currencies"> | number | null;
|
|
20800
20828
|
symbol?: StringNullableFilter<"currencies"> | string | null;
|
|
20801
20829
|
is_active?: BoolNullableFilter<"currencies"> | boolean | null;
|
|
20802
20830
|
is_prefix?: BoolNullableFilter<"currencies"> | boolean | null;
|
|
@@ -20813,6 +20841,9 @@ type currenciesOrderByWithRelationInput = {
|
|
|
20813
20841
|
logic_code?: SortOrderInput | SortOrder;
|
|
20814
20842
|
code?: SortOrderInput | SortOrder;
|
|
20815
20843
|
name?: SortOrderInput | SortOrder;
|
|
20844
|
+
major_unit?: SortOrderInput | SortOrder;
|
|
20845
|
+
minor_unit?: SortOrderInput | SortOrder;
|
|
20846
|
+
iso_decimal?: SortOrderInput | SortOrder;
|
|
20816
20847
|
symbol?: SortOrderInput | SortOrder;
|
|
20817
20848
|
is_active?: SortOrderInput | SortOrder;
|
|
20818
20849
|
is_prefix?: SortOrderInput | SortOrder;
|
|
@@ -20832,6 +20863,9 @@ type currenciesWhereUniqueInput = AtLeast<{
|
|
|
20832
20863
|
NOT?: currenciesWhereInput | currenciesWhereInput[];
|
|
20833
20864
|
code?: StringNullableFilter<"currencies"> | string | null;
|
|
20834
20865
|
name?: StringNullableFilter<"currencies"> | string | null;
|
|
20866
|
+
major_unit?: StringNullableFilter<"currencies"> | string | null;
|
|
20867
|
+
minor_unit?: StringNullableFilter<"currencies"> | string | null;
|
|
20868
|
+
iso_decimal?: IntNullableFilter<"currencies"> | number | null;
|
|
20835
20869
|
symbol?: StringNullableFilter<"currencies"> | string | null;
|
|
20836
20870
|
is_active?: BoolNullableFilter<"currencies"> | boolean | null;
|
|
20837
20871
|
is_prefix?: BoolNullableFilter<"currencies"> | boolean | null;
|
|
@@ -20848,6 +20882,9 @@ type currenciesOrderByWithAggregationInput = {
|
|
|
20848
20882
|
logic_code?: SortOrderInput | SortOrder;
|
|
20849
20883
|
code?: SortOrderInput | SortOrder;
|
|
20850
20884
|
name?: SortOrderInput | SortOrder;
|
|
20885
|
+
major_unit?: SortOrderInput | SortOrder;
|
|
20886
|
+
minor_unit?: SortOrderInput | SortOrder;
|
|
20887
|
+
iso_decimal?: SortOrderInput | SortOrder;
|
|
20851
20888
|
symbol?: SortOrderInput | SortOrder;
|
|
20852
20889
|
is_active?: SortOrderInput | SortOrder;
|
|
20853
20890
|
is_prefix?: SortOrderInput | SortOrder;
|
|
@@ -20870,6 +20907,9 @@ type currenciesScalarWhereWithAggregatesInput = {
|
|
|
20870
20907
|
logic_code?: StringNullableWithAggregatesFilter<"currencies"> | string | null;
|
|
20871
20908
|
code?: StringNullableWithAggregatesFilter<"currencies"> | string | null;
|
|
20872
20909
|
name?: StringNullableWithAggregatesFilter<"currencies"> | string | null;
|
|
20910
|
+
major_unit?: StringNullableWithAggregatesFilter<"currencies"> | string | null;
|
|
20911
|
+
minor_unit?: StringNullableWithAggregatesFilter<"currencies"> | string | null;
|
|
20912
|
+
iso_decimal?: IntNullableWithAggregatesFilter<"currencies"> | number | null;
|
|
20873
20913
|
symbol?: StringNullableWithAggregatesFilter<"currencies"> | string | null;
|
|
20874
20914
|
is_active?: BoolNullableWithAggregatesFilter<"currencies"> | boolean | null;
|
|
20875
20915
|
is_prefix?: BoolNullableWithAggregatesFilter<"currencies"> | boolean | null;
|
|
@@ -20883,6 +20923,9 @@ type currenciesCreateInput = {
|
|
|
20883
20923
|
logic_code?: string | null;
|
|
20884
20924
|
code?: string | null;
|
|
20885
20925
|
name?: string | null;
|
|
20926
|
+
major_unit?: string | null;
|
|
20927
|
+
minor_unit?: string | null;
|
|
20928
|
+
iso_decimal?: number | null;
|
|
20886
20929
|
symbol?: string | null;
|
|
20887
20930
|
is_active?: boolean | null;
|
|
20888
20931
|
is_prefix?: boolean | null;
|
|
@@ -20899,6 +20942,9 @@ type currenciesUncheckedCreateInput = {
|
|
|
20899
20942
|
logic_code?: string | null;
|
|
20900
20943
|
code?: string | null;
|
|
20901
20944
|
name?: string | null;
|
|
20945
|
+
major_unit?: string | null;
|
|
20946
|
+
minor_unit?: string | null;
|
|
20947
|
+
iso_decimal?: number | null;
|
|
20902
20948
|
symbol?: string | null;
|
|
20903
20949
|
is_active?: boolean | null;
|
|
20904
20950
|
is_prefix?: boolean | null;
|
|
@@ -20914,6 +20960,9 @@ type currenciesUpdateInput = {
|
|
|
20914
20960
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20915
20961
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20916
20962
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20963
|
+
major_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20964
|
+
minor_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20965
|
+
iso_decimal?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
20917
20966
|
symbol?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20918
20967
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
20919
20968
|
is_prefix?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
@@ -20930,6 +20979,9 @@ type currenciesUncheckedUpdateInput = {
|
|
|
20930
20979
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20931
20980
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20932
20981
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20982
|
+
major_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20983
|
+
minor_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20984
|
+
iso_decimal?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
20933
20985
|
symbol?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20934
20986
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
20935
20987
|
is_prefix?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
@@ -20946,6 +20998,9 @@ type currenciesCreateManyInput = {
|
|
|
20946
20998
|
logic_code?: string | null;
|
|
20947
20999
|
code?: string | null;
|
|
20948
21000
|
name?: string | null;
|
|
21001
|
+
major_unit?: string | null;
|
|
21002
|
+
minor_unit?: string | null;
|
|
21003
|
+
iso_decimal?: number | null;
|
|
20949
21004
|
symbol?: string | null;
|
|
20950
21005
|
is_active?: boolean | null;
|
|
20951
21006
|
is_prefix?: boolean | null;
|
|
@@ -20959,6 +21014,9 @@ type currenciesUpdateManyMutationInput = {
|
|
|
20959
21014
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20960
21015
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20961
21016
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21017
|
+
major_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21018
|
+
minor_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21019
|
+
iso_decimal?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
20962
21020
|
symbol?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20963
21021
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
20964
21022
|
is_prefix?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
@@ -20973,6 +21031,9 @@ type currenciesUncheckedUpdateManyInput = {
|
|
|
20973
21031
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20974
21032
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20975
21033
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21034
|
+
major_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21035
|
+
minor_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21036
|
+
iso_decimal?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
20976
21037
|
symbol?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
20977
21038
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
20978
21039
|
is_prefix?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
@@ -20991,6 +21052,9 @@ type currenciesCountOrderByAggregateInput = {
|
|
|
20991
21052
|
logic_code?: SortOrder;
|
|
20992
21053
|
code?: SortOrder;
|
|
20993
21054
|
name?: SortOrder;
|
|
21055
|
+
major_unit?: SortOrder;
|
|
21056
|
+
minor_unit?: SortOrder;
|
|
21057
|
+
iso_decimal?: SortOrder;
|
|
20994
21058
|
symbol?: SortOrder;
|
|
20995
21059
|
is_active?: SortOrder;
|
|
20996
21060
|
is_prefix?: SortOrder;
|
|
@@ -21002,12 +21066,16 @@ type currenciesCountOrderByAggregateInput = {
|
|
|
21002
21066
|
};
|
|
21003
21067
|
type currenciesAvgOrderByAggregateInput = {
|
|
21004
21068
|
id?: SortOrder;
|
|
21069
|
+
iso_decimal?: SortOrder;
|
|
21005
21070
|
};
|
|
21006
21071
|
type currenciesMaxOrderByAggregateInput = {
|
|
21007
21072
|
id?: SortOrder;
|
|
21008
21073
|
logic_code?: SortOrder;
|
|
21009
21074
|
code?: SortOrder;
|
|
21010
21075
|
name?: SortOrder;
|
|
21076
|
+
major_unit?: SortOrder;
|
|
21077
|
+
minor_unit?: SortOrder;
|
|
21078
|
+
iso_decimal?: SortOrder;
|
|
21011
21079
|
symbol?: SortOrder;
|
|
21012
21080
|
is_active?: SortOrder;
|
|
21013
21081
|
is_prefix?: SortOrder;
|
|
@@ -21022,6 +21090,9 @@ type currenciesMinOrderByAggregateInput = {
|
|
|
21022
21090
|
logic_code?: SortOrder;
|
|
21023
21091
|
code?: SortOrder;
|
|
21024
21092
|
name?: SortOrder;
|
|
21093
|
+
major_unit?: SortOrder;
|
|
21094
|
+
minor_unit?: SortOrder;
|
|
21095
|
+
iso_decimal?: SortOrder;
|
|
21025
21096
|
symbol?: SortOrder;
|
|
21026
21097
|
is_active?: SortOrder;
|
|
21027
21098
|
is_prefix?: SortOrder;
|
|
@@ -21033,6 +21104,7 @@ type currenciesMinOrderByAggregateInput = {
|
|
|
21033
21104
|
};
|
|
21034
21105
|
type currenciesSumOrderByAggregateInput = {
|
|
21035
21106
|
id?: SortOrder;
|
|
21107
|
+
iso_decimal?: SortOrder;
|
|
21036
21108
|
};
|
|
21037
21109
|
type currenciesCreateNestedOneWithoutBillingsInput = {
|
|
21038
21110
|
create?: XOR<currenciesCreateWithoutBillingsInput, currenciesUncheckedCreateWithoutBillingsInput>;
|
|
@@ -21066,6 +21138,9 @@ type currenciesCreateWithoutBillingsInput = {
|
|
|
21066
21138
|
logic_code?: string | null;
|
|
21067
21139
|
code?: string | null;
|
|
21068
21140
|
name?: string | null;
|
|
21141
|
+
major_unit?: string | null;
|
|
21142
|
+
minor_unit?: string | null;
|
|
21143
|
+
iso_decimal?: number | null;
|
|
21069
21144
|
symbol?: string | null;
|
|
21070
21145
|
is_active?: boolean | null;
|
|
21071
21146
|
is_prefix?: boolean | null;
|
|
@@ -21081,6 +21156,9 @@ type currenciesUncheckedCreateWithoutBillingsInput = {
|
|
|
21081
21156
|
logic_code?: string | null;
|
|
21082
21157
|
code?: string | null;
|
|
21083
21158
|
name?: string | null;
|
|
21159
|
+
major_unit?: string | null;
|
|
21160
|
+
minor_unit?: string | null;
|
|
21161
|
+
iso_decimal?: number | null;
|
|
21084
21162
|
symbol?: string | null;
|
|
21085
21163
|
is_active?: boolean | null;
|
|
21086
21164
|
is_prefix?: boolean | null;
|
|
@@ -21108,6 +21186,9 @@ type currenciesUpdateWithoutBillingsInput = {
|
|
|
21108
21186
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21109
21187
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21110
21188
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21189
|
+
major_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21190
|
+
minor_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21191
|
+
iso_decimal?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
21111
21192
|
symbol?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21112
21193
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
21113
21194
|
is_prefix?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
@@ -21123,6 +21204,9 @@ type currenciesUncheckedUpdateWithoutBillingsInput = {
|
|
|
21123
21204
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21124
21205
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21125
21206
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21207
|
+
major_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21208
|
+
minor_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21209
|
+
iso_decimal?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
21126
21210
|
symbol?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21127
21211
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
21128
21212
|
is_prefix?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
@@ -21137,6 +21221,9 @@ type currenciesCreateWithoutCurrency_logsInput = {
|
|
|
21137
21221
|
logic_code?: string | null;
|
|
21138
21222
|
code?: string | null;
|
|
21139
21223
|
name?: string | null;
|
|
21224
|
+
major_unit?: string | null;
|
|
21225
|
+
minor_unit?: string | null;
|
|
21226
|
+
iso_decimal?: number | null;
|
|
21140
21227
|
symbol?: string | null;
|
|
21141
21228
|
is_active?: boolean | null;
|
|
21142
21229
|
is_prefix?: boolean | null;
|
|
@@ -21152,6 +21239,9 @@ type currenciesUncheckedCreateWithoutCurrency_logsInput = {
|
|
|
21152
21239
|
logic_code?: string | null;
|
|
21153
21240
|
code?: string | null;
|
|
21154
21241
|
name?: string | null;
|
|
21242
|
+
major_unit?: string | null;
|
|
21243
|
+
minor_unit?: string | null;
|
|
21244
|
+
iso_decimal?: number | null;
|
|
21155
21245
|
symbol?: string | null;
|
|
21156
21246
|
is_active?: boolean | null;
|
|
21157
21247
|
is_prefix?: boolean | null;
|
|
@@ -21179,6 +21269,9 @@ type currenciesUpdateWithoutCurrency_logsInput = {
|
|
|
21179
21269
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21180
21270
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21181
21271
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21272
|
+
major_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21273
|
+
minor_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21274
|
+
iso_decimal?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
21182
21275
|
symbol?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21183
21276
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
21184
21277
|
is_prefix?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
@@ -21194,6 +21287,9 @@ type currenciesUncheckedUpdateWithoutCurrency_logsInput = {
|
|
|
21194
21287
|
logic_code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21195
21288
|
code?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21196
21289
|
name?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21290
|
+
major_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21291
|
+
minor_unit?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21292
|
+
iso_decimal?: NullableIntFieldUpdateOperationsInput | number | null;
|
|
21197
21293
|
symbol?: NullableStringFieldUpdateOperationsInput | string | null;
|
|
21198
21294
|
is_active?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
21199
21295
|
is_prefix?: NullableBoolFieldUpdateOperationsInput | boolean | null;
|
|
@@ -21238,6 +21334,9 @@ type currenciesSelect<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.
|
|
|
21238
21334
|
logic_code?: boolean;
|
|
21239
21335
|
code?: boolean;
|
|
21240
21336
|
name?: boolean;
|
|
21337
|
+
major_unit?: boolean;
|
|
21338
|
+
minor_unit?: boolean;
|
|
21339
|
+
iso_decimal?: boolean;
|
|
21241
21340
|
symbol?: boolean;
|
|
21242
21341
|
is_active?: boolean;
|
|
21243
21342
|
is_prefix?: boolean;
|
|
@@ -21255,6 +21354,9 @@ type currenciesSelectCreateManyAndReturn<ExtArgs extends Types$1.Extensions.Inte
|
|
|
21255
21354
|
logic_code?: boolean;
|
|
21256
21355
|
code?: boolean;
|
|
21257
21356
|
name?: boolean;
|
|
21357
|
+
major_unit?: boolean;
|
|
21358
|
+
minor_unit?: boolean;
|
|
21359
|
+
iso_decimal?: boolean;
|
|
21258
21360
|
symbol?: boolean;
|
|
21259
21361
|
is_active?: boolean;
|
|
21260
21362
|
is_prefix?: boolean;
|
|
@@ -21269,6 +21371,9 @@ type currenciesSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensions.Inte
|
|
|
21269
21371
|
logic_code?: boolean;
|
|
21270
21372
|
code?: boolean;
|
|
21271
21373
|
name?: boolean;
|
|
21374
|
+
major_unit?: boolean;
|
|
21375
|
+
minor_unit?: boolean;
|
|
21376
|
+
iso_decimal?: boolean;
|
|
21272
21377
|
symbol?: boolean;
|
|
21273
21378
|
is_active?: boolean;
|
|
21274
21379
|
is_prefix?: boolean;
|
|
@@ -21278,7 +21383,7 @@ type currenciesSelectUpdateManyAndReturn<ExtArgs extends Types$1.Extensions.Inte
|
|
|
21278
21383
|
updated_at?: boolean;
|
|
21279
21384
|
updated_by?: boolean;
|
|
21280
21385
|
}, ExtArgs["result"]["currencies"]>;
|
|
21281
|
-
type currenciesOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "logic_code" | "code" | "name" | "symbol" | "is_active" | "is_prefix" | "is_suffix" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["currencies"]>;
|
|
21386
|
+
type currenciesOmit<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = Types$1.Extensions.GetOmit<"id" | "logic_code" | "code" | "name" | "major_unit" | "minor_unit" | "iso_decimal" | "symbol" | "is_active" | "is_prefix" | "is_suffix" | "created_at" | "created_by" | "updated_at" | "updated_by", ExtArgs["result"]["currencies"]>;
|
|
21282
21387
|
type currenciesInclude<ExtArgs extends Types$1.Extensions.InternalArgs = Types$1.Extensions.DefaultArgs> = {
|
|
21283
21388
|
currency_logs?: boolean | currencies$currency_logsArgs<ExtArgs>;
|
|
21284
21389
|
billings?: boolean | currencies$billingsArgs<ExtArgs>;
|
|
@@ -21295,6 +21400,9 @@ type $currenciesPayload<ExtArgs extends Types$1.Extensions.InternalArgs = Types$
|
|
|
21295
21400
|
logic_code: string | null;
|
|
21296
21401
|
code: string | null;
|
|
21297
21402
|
name: string | null;
|
|
21403
|
+
major_unit: string | null;
|
|
21404
|
+
minor_unit: string | null;
|
|
21405
|
+
iso_decimal: number | null;
|
|
21298
21406
|
symbol: string | null;
|
|
21299
21407
|
is_active: boolean | null;
|
|
21300
21408
|
is_prefix: boolean | null;
|
|
@@ -21649,6 +21757,9 @@ interface currenciesFieldRefs {
|
|
|
21649
21757
|
readonly logic_code: FieldRef<"currencies", 'String'>;
|
|
21650
21758
|
readonly code: FieldRef<"currencies", 'String'>;
|
|
21651
21759
|
readonly name: FieldRef<"currencies", 'String'>;
|
|
21760
|
+
readonly major_unit: FieldRef<"currencies", 'String'>;
|
|
21761
|
+
readonly minor_unit: FieldRef<"currencies", 'String'>;
|
|
21762
|
+
readonly iso_decimal: FieldRef<"currencies", 'Int'>;
|
|
21652
21763
|
readonly symbol: FieldRef<"currencies", 'String'>;
|
|
21653
21764
|
readonly is_active: FieldRef<"currencies", 'Boolean'>;
|
|
21654
21765
|
readonly is_prefix: FieldRef<"currencies", 'Boolean'>;
|
|
@@ -33061,6 +33172,9 @@ declare const CurrenciesScalarFieldEnum: {
|
|
|
33061
33172
|
readonly logic_code: "logic_code";
|
|
33062
33173
|
readonly code: "code";
|
|
33063
33174
|
readonly name: "name";
|
|
33175
|
+
readonly major_unit: "major_unit";
|
|
33176
|
+
readonly minor_unit: "minor_unit";
|
|
33177
|
+
readonly iso_decimal: "iso_decimal";
|
|
33064
33178
|
readonly symbol: "symbol";
|
|
33065
33179
|
readonly is_active: "is_active";
|
|
33066
33180
|
readonly is_prefix: "is_prefix";
|
|
@@ -34040,6 +34154,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
34040
34154
|
updated_at: Date | null;
|
|
34041
34155
|
updated_by: string | null;
|
|
34042
34156
|
code: string | null;
|
|
34157
|
+
major_unit: string | null;
|
|
34158
|
+
minor_unit: string | null;
|
|
34159
|
+
iso_decimal: number | null;
|
|
34043
34160
|
is_prefix: boolean | null;
|
|
34044
34161
|
is_suffix: boolean | null;
|
|
34045
34162
|
}[] | undefined;
|
|
@@ -34069,6 +34186,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
34069
34186
|
updated_at: Date | null;
|
|
34070
34187
|
updated_by: string | null;
|
|
34071
34188
|
code: string | null;
|
|
34189
|
+
major_unit: string | null;
|
|
34190
|
+
minor_unit: string | null;
|
|
34191
|
+
iso_decimal: number | null;
|
|
34072
34192
|
is_prefix: boolean | null;
|
|
34073
34193
|
is_suffix: boolean | null;
|
|
34074
34194
|
};
|
|
@@ -34168,6 +34288,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
34168
34288
|
is_active?: boolean | undefined;
|
|
34169
34289
|
code?: string | null | undefined;
|
|
34170
34290
|
name?: string | null | undefined;
|
|
34291
|
+
major_unit?: string | null | undefined;
|
|
34292
|
+
minor_unit?: string | null | undefined;
|
|
34293
|
+
iso_decimal?: number | null | undefined;
|
|
34171
34294
|
symbol?: string | null | undefined;
|
|
34172
34295
|
is_prefix?: boolean | null | undefined;
|
|
34173
34296
|
is_suffix?: boolean | null | undefined;
|
|
@@ -34184,6 +34307,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
34184
34307
|
updated_at: Date | null;
|
|
34185
34308
|
updated_by: string | null;
|
|
34186
34309
|
code: string | null;
|
|
34310
|
+
major_unit: string | null;
|
|
34311
|
+
minor_unit: string | null;
|
|
34312
|
+
iso_decimal: number | null;
|
|
34187
34313
|
is_prefix: boolean | null;
|
|
34188
34314
|
is_suffix: boolean | null;
|
|
34189
34315
|
} | undefined;
|
|
@@ -34208,6 +34334,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
34208
34334
|
is_active?: boolean | undefined;
|
|
34209
34335
|
code?: string | null | undefined;
|
|
34210
34336
|
name?: string | null | undefined;
|
|
34337
|
+
major_unit?: string | null | undefined;
|
|
34338
|
+
minor_unit?: string | null | undefined;
|
|
34339
|
+
iso_decimal?: number | null | undefined;
|
|
34211
34340
|
symbol?: string | null | undefined;
|
|
34212
34341
|
is_prefix?: boolean | null | undefined;
|
|
34213
34342
|
is_suffix?: boolean | null | undefined;
|
|
@@ -34224,6 +34353,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
34224
34353
|
updated_at: Date | null;
|
|
34225
34354
|
updated_by: string | null;
|
|
34226
34355
|
code: string | null;
|
|
34356
|
+
major_unit: string | null;
|
|
34357
|
+
minor_unit: string | null;
|
|
34358
|
+
iso_decimal: number | null;
|
|
34227
34359
|
is_prefix: boolean | null;
|
|
34228
34360
|
is_suffix: boolean | null;
|
|
34229
34361
|
} | undefined;
|
|
@@ -34260,6 +34392,9 @@ declare const appRouter: BuiltRouter<{
|
|
|
34260
34392
|
updated_at: Date | null;
|
|
34261
34393
|
updated_by: string | null;
|
|
34262
34394
|
code: string | null;
|
|
34395
|
+
major_unit: string | null;
|
|
34396
|
+
minor_unit: string | null;
|
|
34397
|
+
iso_decimal: number | null;
|
|
34263
34398
|
is_prefix: boolean | null;
|
|
34264
34399
|
is_suffix: boolean | null;
|
|
34265
34400
|
} | undefined)[] | undefined;
|