@kl1/contracts 1.2.23-uat → 1.2.25-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. package/dist/api-contracts/src/chat/validation.d.ts +10 -0
  2. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  3. package/dist/api-contracts/src/contract.d.ts +121 -1890
  4. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  5. package/dist/api-contracts/src/extension/index.d.ts +81 -0
  6. package/dist/api-contracts/src/extension/index.d.ts.map +1 -1
  7. package/dist/api-contracts/src/facebook-feed/index.d.ts +5 -0
  8. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/index.d.ts +2 -1
  10. package/dist/api-contracts/src/index.d.ts.map +1 -1
  11. package/dist/api-contracts/src/instagram/index.d.ts +5 -0
  12. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  13. package/dist/api-contracts/src/line/index.d.ts +5 -0
  14. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  15. package/dist/api-contracts/src/messenger/index.d.ts +5 -0
  16. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/sms/index.d.ts +5 -0
  18. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/subscription/index.d.ts +34 -0
  20. package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/telegram/index.d.ts +5 -0
  22. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/viber/index.d.ts +5 -0
  24. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  25. package/dist/api-contracts/src/webchat/index.d.ts +5 -0
  26. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/whatsapp/index.d.ts +5 -0
  28. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  29. package/dist/index.js +1019 -990
  30. package/dist/index.js.map +1 -1
  31. package/dist/index.mjs +1019 -990
  32. package/dist/index.mjs.map +1 -1
  33. package/package.json +7 -3
@@ -36822,1896 +36822,6 @@ export declare const apiContract: {
36822
36822
  path: "/bots/";
36823
36823
  };
36824
36824
  };
36825
- subscription: {
36826
- getSubscription: {
36827
- method: "GET";
36828
- query: null;
36829
- responses: {
36830
- 200: import("zod").ZodObject<{
36831
- requestId: import("zod").ZodString;
36832
- subscription: import("zod").ZodObject<{
36833
- id: import("zod").ZodString;
36834
- createdAt: import("zod").ZodDate;
36835
- updatedAt: import("zod").ZodDate;
36836
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36837
- provider: import("zod").ZodString;
36838
- type: import("zod").ZodString;
36839
- subscriptionId: import("zod").ZodString;
36840
- interval: import("zod").ZodString;
36841
- quantity: import("zod").ZodNumber;
36842
- amount: import("zod").ZodNumber;
36843
- startAt: import("zod").ZodNullable<import("zod").ZodDate>;
36844
- expireAt: import("zod").ZodDate;
36845
- status: import("zod").ZodString;
36846
- name: import("zod").ZodNullable<import("zod").ZodString>;
36847
- subscriptionProducts: import("zod").ZodArray<import("zod").ZodObject<{
36848
- id: import("zod").ZodString;
36849
- createdAt: import("zod").ZodDate;
36850
- updatedAt: import("zod").ZodDate;
36851
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36852
- limit: import("zod").ZodNumber;
36853
- subscriptionItemId: import("zod").ZodString;
36854
- usage: import("zod").ZodNullable<import("zod").ZodNumber>;
36855
- product: import("zod").ZodObject<{
36856
- id: import("zod").ZodString;
36857
- createdAt: import("zod").ZodDate;
36858
- updatedAt: import("zod").ZodDate;
36859
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36860
- provider: import("zod").ZodString;
36861
- productId: import("zod").ZodString;
36862
- name: import("zod").ZodString;
36863
- type: import("zod").ZodString;
36864
- omnichannel: import("zod").ZodString;
36865
- usageType: import("zod").ZodNullable<import("zod").ZodString>;
36866
- productPrice: import("zod").ZodObject<{
36867
- id: import("zod").ZodString;
36868
- createdAt: import("zod").ZodDate;
36869
- updatedAt: import("zod").ZodDate;
36870
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36871
- priceId: import("zod").ZodString;
36872
- name: import("zod").ZodNullable<import("zod").ZodString>;
36873
- perUnit: import("zod").ZodNumber;
36874
- price: import("zod").ZodNumber;
36875
- currency: import("zod").ZodNullable<import("zod").ZodString>;
36876
- }, "strip", import("zod").ZodTypeAny, {
36877
- currency: string | null;
36878
- name: string | null;
36879
- id: string;
36880
- createdAt: Date;
36881
- updatedAt: Date;
36882
- deletedAt: Date | null;
36883
- priceId: string;
36884
- perUnit: number;
36885
- price: number;
36886
- }, {
36887
- currency: string | null;
36888
- name: string | null;
36889
- id: string;
36890
- createdAt: Date;
36891
- updatedAt: Date;
36892
- deletedAt: Date | null;
36893
- priceId: string;
36894
- perUnit: number;
36895
- price: number;
36896
- }>;
36897
- relatedProducts: import("zod").ZodArray<import("zod").ZodObject<{
36898
- id: import("zod").ZodString;
36899
- createdAt: import("zod").ZodDate;
36900
- updatedAt: import("zod").ZodDate;
36901
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36902
- includedQuantity: import("zod").ZodNumber;
36903
- product: import("zod").ZodObject<{
36904
- id: import("zod").ZodString;
36905
- createdAt: import("zod").ZodDate;
36906
- updatedAt: import("zod").ZodDate;
36907
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36908
- provider: import("zod").ZodString;
36909
- productId: import("zod").ZodString;
36910
- name: import("zod").ZodString;
36911
- type: import("zod").ZodString;
36912
- omnichannel: import("zod").ZodString;
36913
- usageType: import("zod").ZodNullable<import("zod").ZodString>;
36914
- productPrice: import("zod").ZodObject<{
36915
- id: import("zod").ZodString;
36916
- createdAt: import("zod").ZodDate;
36917
- updatedAt: import("zod").ZodDate;
36918
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
36919
- priceId: import("zod").ZodString;
36920
- name: import("zod").ZodNullable<import("zod").ZodString>;
36921
- perUnit: import("zod").ZodNumber;
36922
- price: import("zod").ZodNumber;
36923
- currency: import("zod").ZodNullable<import("zod").ZodString>;
36924
- }, "strip", import("zod").ZodTypeAny, {
36925
- currency: string | null;
36926
- name: string | null;
36927
- id: string;
36928
- createdAt: Date;
36929
- updatedAt: Date;
36930
- deletedAt: Date | null;
36931
- priceId: string;
36932
- perUnit: number;
36933
- price: number;
36934
- }, {
36935
- currency: string | null;
36936
- name: string | null;
36937
- id: string;
36938
- createdAt: Date;
36939
- updatedAt: Date;
36940
- deletedAt: Date | null;
36941
- priceId: string;
36942
- perUnit: number;
36943
- price: number;
36944
- }>;
36945
- }, "strip", import("zod").ZodTypeAny, {
36946
- name: string;
36947
- type: string;
36948
- id: string;
36949
- createdAt: Date;
36950
- updatedAt: Date;
36951
- deletedAt: Date | null;
36952
- provider: string;
36953
- productId: string;
36954
- omnichannel: string;
36955
- usageType: string | null;
36956
- productPrice: {
36957
- currency: string | null;
36958
- name: string | null;
36959
- id: string;
36960
- createdAt: Date;
36961
- updatedAt: Date;
36962
- deletedAt: Date | null;
36963
- priceId: string;
36964
- perUnit: number;
36965
- price: number;
36966
- };
36967
- }, {
36968
- name: string;
36969
- type: string;
36970
- id: string;
36971
- createdAt: Date;
36972
- updatedAt: Date;
36973
- deletedAt: Date | null;
36974
- provider: string;
36975
- productId: string;
36976
- omnichannel: string;
36977
- usageType: string | null;
36978
- productPrice: {
36979
- currency: string | null;
36980
- name: string | null;
36981
- id: string;
36982
- createdAt: Date;
36983
- updatedAt: Date;
36984
- deletedAt: Date | null;
36985
- priceId: string;
36986
- perUnit: number;
36987
- price: number;
36988
- };
36989
- }>;
36990
- }, "strip", import("zod").ZodTypeAny, {
36991
- id: string;
36992
- product: {
36993
- name: string;
36994
- type: string;
36995
- id: string;
36996
- createdAt: Date;
36997
- updatedAt: Date;
36998
- deletedAt: Date | null;
36999
- provider: string;
37000
- productId: string;
37001
- omnichannel: string;
37002
- usageType: string | null;
37003
- productPrice: {
37004
- currency: string | null;
37005
- name: string | null;
37006
- id: string;
37007
- createdAt: Date;
37008
- updatedAt: Date;
37009
- deletedAt: Date | null;
37010
- priceId: string;
37011
- perUnit: number;
37012
- price: number;
37013
- };
37014
- };
37015
- createdAt: Date;
37016
- updatedAt: Date;
37017
- deletedAt: Date | null;
37018
- includedQuantity: number;
37019
- }, {
37020
- id: string;
37021
- product: {
37022
- name: string;
37023
- type: string;
37024
- id: string;
37025
- createdAt: Date;
37026
- updatedAt: Date;
37027
- deletedAt: Date | null;
37028
- provider: string;
37029
- productId: string;
37030
- omnichannel: string;
37031
- usageType: string | null;
37032
- productPrice: {
37033
- currency: string | null;
37034
- name: string | null;
37035
- id: string;
37036
- createdAt: Date;
37037
- updatedAt: Date;
37038
- deletedAt: Date | null;
37039
- priceId: string;
37040
- perUnit: number;
37041
- price: number;
37042
- };
37043
- };
37044
- createdAt: Date;
37045
- updatedAt: Date;
37046
- deletedAt: Date | null;
37047
- includedQuantity: number;
37048
- }>, "many">;
37049
- }, "strip", import("zod").ZodTypeAny, {
37050
- name: string;
37051
- type: string;
37052
- id: string;
37053
- createdAt: Date;
37054
- updatedAt: Date;
37055
- deletedAt: Date | null;
37056
- provider: string;
37057
- productId: string;
37058
- omnichannel: string;
37059
- usageType: string | null;
37060
- productPrice: {
37061
- currency: string | null;
37062
- name: string | null;
37063
- id: string;
37064
- createdAt: Date;
37065
- updatedAt: Date;
37066
- deletedAt: Date | null;
37067
- priceId: string;
37068
- perUnit: number;
37069
- price: number;
37070
- };
37071
- relatedProducts: {
37072
- id: string;
37073
- product: {
37074
- name: string;
37075
- type: string;
37076
- id: string;
37077
- createdAt: Date;
37078
- updatedAt: Date;
37079
- deletedAt: Date | null;
37080
- provider: string;
37081
- productId: string;
37082
- omnichannel: string;
37083
- usageType: string | null;
37084
- productPrice: {
37085
- currency: string | null;
37086
- name: string | null;
37087
- id: string;
37088
- createdAt: Date;
37089
- updatedAt: Date;
37090
- deletedAt: Date | null;
37091
- priceId: string;
37092
- perUnit: number;
37093
- price: number;
37094
- };
37095
- };
37096
- createdAt: Date;
37097
- updatedAt: Date;
37098
- deletedAt: Date | null;
37099
- includedQuantity: number;
37100
- }[];
37101
- }, {
37102
- name: string;
37103
- type: string;
37104
- id: string;
37105
- createdAt: Date;
37106
- updatedAt: Date;
37107
- deletedAt: Date | null;
37108
- provider: string;
37109
- productId: string;
37110
- omnichannel: string;
37111
- usageType: string | null;
37112
- productPrice: {
37113
- currency: string | null;
37114
- name: string | null;
37115
- id: string;
37116
- createdAt: Date;
37117
- updatedAt: Date;
37118
- deletedAt: Date | null;
37119
- priceId: string;
37120
- perUnit: number;
37121
- price: number;
37122
- };
37123
- relatedProducts: {
37124
- id: string;
37125
- product: {
37126
- name: string;
37127
- type: string;
37128
- id: string;
37129
- createdAt: Date;
37130
- updatedAt: Date;
37131
- deletedAt: Date | null;
37132
- provider: string;
37133
- productId: string;
37134
- omnichannel: string;
37135
- usageType: string | null;
37136
- productPrice: {
37137
- currency: string | null;
37138
- name: string | null;
37139
- id: string;
37140
- createdAt: Date;
37141
- updatedAt: Date;
37142
- deletedAt: Date | null;
37143
- priceId: string;
37144
- perUnit: number;
37145
- price: number;
37146
- };
37147
- };
37148
- createdAt: Date;
37149
- updatedAt: Date;
37150
- deletedAt: Date | null;
37151
- includedQuantity: number;
37152
- }[];
37153
- }>;
37154
- }, "strip", import("zod").ZodTypeAny, {
37155
- id: string;
37156
- product: {
37157
- name: string;
37158
- type: string;
37159
- id: string;
37160
- createdAt: Date;
37161
- updatedAt: Date;
37162
- deletedAt: Date | null;
37163
- provider: string;
37164
- productId: string;
37165
- omnichannel: string;
37166
- usageType: string | null;
37167
- productPrice: {
37168
- currency: string | null;
37169
- name: string | null;
37170
- id: string;
37171
- createdAt: Date;
37172
- updatedAt: Date;
37173
- deletedAt: Date | null;
37174
- priceId: string;
37175
- perUnit: number;
37176
- price: number;
37177
- };
37178
- relatedProducts: {
37179
- id: string;
37180
- product: {
37181
- name: string;
37182
- type: string;
37183
- id: string;
37184
- createdAt: Date;
37185
- updatedAt: Date;
37186
- deletedAt: Date | null;
37187
- provider: string;
37188
- productId: string;
37189
- omnichannel: string;
37190
- usageType: string | null;
37191
- productPrice: {
37192
- currency: string | null;
37193
- name: string | null;
37194
- id: string;
37195
- createdAt: Date;
37196
- updatedAt: Date;
37197
- deletedAt: Date | null;
37198
- priceId: string;
37199
- perUnit: number;
37200
- price: number;
37201
- };
37202
- };
37203
- createdAt: Date;
37204
- updatedAt: Date;
37205
- deletedAt: Date | null;
37206
- includedQuantity: number;
37207
- }[];
37208
- };
37209
- createdAt: Date;
37210
- updatedAt: Date;
37211
- deletedAt: Date | null;
37212
- limit: number;
37213
- subscriptionItemId: string;
37214
- usage: number | null;
37215
- }, {
37216
- id: string;
37217
- product: {
37218
- name: string;
37219
- type: string;
37220
- id: string;
37221
- createdAt: Date;
37222
- updatedAt: Date;
37223
- deletedAt: Date | null;
37224
- provider: string;
37225
- productId: string;
37226
- omnichannel: string;
37227
- usageType: string | null;
37228
- productPrice: {
37229
- currency: string | null;
37230
- name: string | null;
37231
- id: string;
37232
- createdAt: Date;
37233
- updatedAt: Date;
37234
- deletedAt: Date | null;
37235
- priceId: string;
37236
- perUnit: number;
37237
- price: number;
37238
- };
37239
- relatedProducts: {
37240
- id: string;
37241
- product: {
37242
- name: string;
37243
- type: string;
37244
- id: string;
37245
- createdAt: Date;
37246
- updatedAt: Date;
37247
- deletedAt: Date | null;
37248
- provider: string;
37249
- productId: string;
37250
- omnichannel: string;
37251
- usageType: string | null;
37252
- productPrice: {
37253
- currency: string | null;
37254
- name: string | null;
37255
- id: string;
37256
- createdAt: Date;
37257
- updatedAt: Date;
37258
- deletedAt: Date | null;
37259
- priceId: string;
37260
- perUnit: number;
37261
- price: number;
37262
- };
37263
- };
37264
- createdAt: Date;
37265
- updatedAt: Date;
37266
- deletedAt: Date | null;
37267
- includedQuantity: number;
37268
- }[];
37269
- };
37270
- createdAt: Date;
37271
- updatedAt: Date;
37272
- deletedAt: Date | null;
37273
- limit: number;
37274
- subscriptionItemId: string;
37275
- usage: number | null;
37276
- }>, "many">;
37277
- productPrice: import("zod").ZodObject<{
37278
- id: import("zod").ZodString;
37279
- createdAt: import("zod").ZodDate;
37280
- updatedAt: import("zod").ZodDate;
37281
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
37282
- priceId: import("zod").ZodString;
37283
- name: import("zod").ZodNullable<import("zod").ZodString>;
37284
- perUnit: import("zod").ZodNumber;
37285
- price: import("zod").ZodNumber;
37286
- currency: import("zod").ZodNullable<import("zod").ZodString>;
37287
- }, "strip", import("zod").ZodTypeAny, {
37288
- currency: string | null;
37289
- name: string | null;
37290
- id: string;
37291
- createdAt: Date;
37292
- updatedAt: Date;
37293
- deletedAt: Date | null;
37294
- priceId: string;
37295
- perUnit: number;
37296
- price: number;
37297
- }, {
37298
- currency: string | null;
37299
- name: string | null;
37300
- id: string;
37301
- createdAt: Date;
37302
- updatedAt: Date;
37303
- deletedAt: Date | null;
37304
- priceId: string;
37305
- perUnit: number;
37306
- price: number;
37307
- }>;
37308
- product: import("zod").ZodObject<{
37309
- id: import("zod").ZodString;
37310
- createdAt: import("zod").ZodDate;
37311
- updatedAt: import("zod").ZodDate;
37312
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
37313
- provider: import("zod").ZodString;
37314
- productId: import("zod").ZodString;
37315
- name: import("zod").ZodString;
37316
- type: import("zod").ZodString;
37317
- omnichannel: import("zod").ZodString;
37318
- usageType: import("zod").ZodNullable<import("zod").ZodString>;
37319
- productPrice: import("zod").ZodObject<{
37320
- id: import("zod").ZodString;
37321
- createdAt: import("zod").ZodDate;
37322
- updatedAt: import("zod").ZodDate;
37323
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
37324
- priceId: import("zod").ZodString;
37325
- name: import("zod").ZodNullable<import("zod").ZodString>;
37326
- perUnit: import("zod").ZodNumber;
37327
- price: import("zod").ZodNumber;
37328
- currency: import("zod").ZodNullable<import("zod").ZodString>;
37329
- }, "strip", import("zod").ZodTypeAny, {
37330
- currency: string | null;
37331
- name: string | null;
37332
- id: string;
37333
- createdAt: Date;
37334
- updatedAt: Date;
37335
- deletedAt: Date | null;
37336
- priceId: string;
37337
- perUnit: number;
37338
- price: number;
37339
- }, {
37340
- currency: string | null;
37341
- name: string | null;
37342
- id: string;
37343
- createdAt: Date;
37344
- updatedAt: Date;
37345
- deletedAt: Date | null;
37346
- priceId: string;
37347
- perUnit: number;
37348
- price: number;
37349
- }>;
37350
- relatedProducts: import("zod").ZodArray<import("zod").ZodObject<{
37351
- id: import("zod").ZodString;
37352
- createdAt: import("zod").ZodDate;
37353
- updatedAt: import("zod").ZodDate;
37354
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
37355
- includedQuantity: import("zod").ZodNumber;
37356
- product: import("zod").ZodObject<{
37357
- id: import("zod").ZodString;
37358
- createdAt: import("zod").ZodDate;
37359
- updatedAt: import("zod").ZodDate;
37360
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
37361
- provider: import("zod").ZodString;
37362
- productId: import("zod").ZodString;
37363
- name: import("zod").ZodString;
37364
- type: import("zod").ZodString;
37365
- omnichannel: import("zod").ZodString;
37366
- usageType: import("zod").ZodNullable<import("zod").ZodString>;
37367
- productPrice: import("zod").ZodObject<{
37368
- id: import("zod").ZodString;
37369
- createdAt: import("zod").ZodDate;
37370
- updatedAt: import("zod").ZodDate;
37371
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
37372
- priceId: import("zod").ZodString;
37373
- name: import("zod").ZodNullable<import("zod").ZodString>;
37374
- perUnit: import("zod").ZodNumber;
37375
- price: import("zod").ZodNumber;
37376
- currency: import("zod").ZodNullable<import("zod").ZodString>;
37377
- }, "strip", import("zod").ZodTypeAny, {
37378
- currency: string | null;
37379
- name: string | null;
37380
- id: string;
37381
- createdAt: Date;
37382
- updatedAt: Date;
37383
- deletedAt: Date | null;
37384
- priceId: string;
37385
- perUnit: number;
37386
- price: number;
37387
- }, {
37388
- currency: string | null;
37389
- name: string | null;
37390
- id: string;
37391
- createdAt: Date;
37392
- updatedAt: Date;
37393
- deletedAt: Date | null;
37394
- priceId: string;
37395
- perUnit: number;
37396
- price: number;
37397
- }>;
37398
- }, "strip", import("zod").ZodTypeAny, {
37399
- name: string;
37400
- type: string;
37401
- id: string;
37402
- createdAt: Date;
37403
- updatedAt: Date;
37404
- deletedAt: Date | null;
37405
- provider: string;
37406
- productId: string;
37407
- omnichannel: string;
37408
- usageType: string | null;
37409
- productPrice: {
37410
- currency: string | null;
37411
- name: string | null;
37412
- id: string;
37413
- createdAt: Date;
37414
- updatedAt: Date;
37415
- deletedAt: Date | null;
37416
- priceId: string;
37417
- perUnit: number;
37418
- price: number;
37419
- };
37420
- }, {
37421
- name: string;
37422
- type: string;
37423
- id: string;
37424
- createdAt: Date;
37425
- updatedAt: Date;
37426
- deletedAt: Date | null;
37427
- provider: string;
37428
- productId: string;
37429
- omnichannel: string;
37430
- usageType: string | null;
37431
- productPrice: {
37432
- currency: string | null;
37433
- name: string | null;
37434
- id: string;
37435
- createdAt: Date;
37436
- updatedAt: Date;
37437
- deletedAt: Date | null;
37438
- priceId: string;
37439
- perUnit: number;
37440
- price: number;
37441
- };
37442
- }>;
37443
- }, "strip", import("zod").ZodTypeAny, {
37444
- id: string;
37445
- product: {
37446
- name: string;
37447
- type: string;
37448
- id: string;
37449
- createdAt: Date;
37450
- updatedAt: Date;
37451
- deletedAt: Date | null;
37452
- provider: string;
37453
- productId: string;
37454
- omnichannel: string;
37455
- usageType: string | null;
37456
- productPrice: {
37457
- currency: string | null;
37458
- name: string | null;
37459
- id: string;
37460
- createdAt: Date;
37461
- updatedAt: Date;
37462
- deletedAt: Date | null;
37463
- priceId: string;
37464
- perUnit: number;
37465
- price: number;
37466
- };
37467
- };
37468
- createdAt: Date;
37469
- updatedAt: Date;
37470
- deletedAt: Date | null;
37471
- includedQuantity: number;
37472
- }, {
37473
- id: string;
37474
- product: {
37475
- name: string;
37476
- type: string;
37477
- id: string;
37478
- createdAt: Date;
37479
- updatedAt: Date;
37480
- deletedAt: Date | null;
37481
- provider: string;
37482
- productId: string;
37483
- omnichannel: string;
37484
- usageType: string | null;
37485
- productPrice: {
37486
- currency: string | null;
37487
- name: string | null;
37488
- id: string;
37489
- createdAt: Date;
37490
- updatedAt: Date;
37491
- deletedAt: Date | null;
37492
- priceId: string;
37493
- perUnit: number;
37494
- price: number;
37495
- };
37496
- };
37497
- createdAt: Date;
37498
- updatedAt: Date;
37499
- deletedAt: Date | null;
37500
- includedQuantity: number;
37501
- }>, "many">;
37502
- }, "strip", import("zod").ZodTypeAny, {
37503
- name: string;
37504
- type: string;
37505
- id: string;
37506
- createdAt: Date;
37507
- updatedAt: Date;
37508
- deletedAt: Date | null;
37509
- provider: string;
37510
- productId: string;
37511
- omnichannel: string;
37512
- usageType: string | null;
37513
- productPrice: {
37514
- currency: string | null;
37515
- name: string | null;
37516
- id: string;
37517
- createdAt: Date;
37518
- updatedAt: Date;
37519
- deletedAt: Date | null;
37520
- priceId: string;
37521
- perUnit: number;
37522
- price: number;
37523
- };
37524
- relatedProducts: {
37525
- id: string;
37526
- product: {
37527
- name: string;
37528
- type: string;
37529
- id: string;
37530
- createdAt: Date;
37531
- updatedAt: Date;
37532
- deletedAt: Date | null;
37533
- provider: string;
37534
- productId: string;
37535
- omnichannel: string;
37536
- usageType: string | null;
37537
- productPrice: {
37538
- currency: string | null;
37539
- name: string | null;
37540
- id: string;
37541
- createdAt: Date;
37542
- updatedAt: Date;
37543
- deletedAt: Date | null;
37544
- priceId: string;
37545
- perUnit: number;
37546
- price: number;
37547
- };
37548
- };
37549
- createdAt: Date;
37550
- updatedAt: Date;
37551
- deletedAt: Date | null;
37552
- includedQuantity: number;
37553
- }[];
37554
- }, {
37555
- name: string;
37556
- type: string;
37557
- id: string;
37558
- createdAt: Date;
37559
- updatedAt: Date;
37560
- deletedAt: Date | null;
37561
- provider: string;
37562
- productId: string;
37563
- omnichannel: string;
37564
- usageType: string | null;
37565
- productPrice: {
37566
- currency: string | null;
37567
- name: string | null;
37568
- id: string;
37569
- createdAt: Date;
37570
- updatedAt: Date;
37571
- deletedAt: Date | null;
37572
- priceId: string;
37573
- perUnit: number;
37574
- price: number;
37575
- };
37576
- relatedProducts: {
37577
- id: string;
37578
- product: {
37579
- name: string;
37580
- type: string;
37581
- id: string;
37582
- createdAt: Date;
37583
- updatedAt: Date;
37584
- deletedAt: Date | null;
37585
- provider: string;
37586
- productId: string;
37587
- omnichannel: string;
37588
- usageType: string | null;
37589
- productPrice: {
37590
- currency: string | null;
37591
- name: string | null;
37592
- id: string;
37593
- createdAt: Date;
37594
- updatedAt: Date;
37595
- deletedAt: Date | null;
37596
- priceId: string;
37597
- perUnit: number;
37598
- price: number;
37599
- };
37600
- };
37601
- createdAt: Date;
37602
- updatedAt: Date;
37603
- deletedAt: Date | null;
37604
- includedQuantity: number;
37605
- }[];
37606
- }>;
37607
- }, "strip", import("zod").ZodTypeAny, {
37608
- name: string | null;
37609
- type: string;
37610
- interval: string;
37611
- id: string;
37612
- product: {
37613
- name: string;
37614
- type: string;
37615
- id: string;
37616
- createdAt: Date;
37617
- updatedAt: Date;
37618
- deletedAt: Date | null;
37619
- provider: string;
37620
- productId: string;
37621
- omnichannel: string;
37622
- usageType: string | null;
37623
- productPrice: {
37624
- currency: string | null;
37625
- name: string | null;
37626
- id: string;
37627
- createdAt: Date;
37628
- updatedAt: Date;
37629
- deletedAt: Date | null;
37630
- priceId: string;
37631
- perUnit: number;
37632
- price: number;
37633
- };
37634
- relatedProducts: {
37635
- id: string;
37636
- product: {
37637
- name: string;
37638
- type: string;
37639
- id: string;
37640
- createdAt: Date;
37641
- updatedAt: Date;
37642
- deletedAt: Date | null;
37643
- provider: string;
37644
- productId: string;
37645
- omnichannel: string;
37646
- usageType: string | null;
37647
- productPrice: {
37648
- currency: string | null;
37649
- name: string | null;
37650
- id: string;
37651
- createdAt: Date;
37652
- updatedAt: Date;
37653
- deletedAt: Date | null;
37654
- priceId: string;
37655
- perUnit: number;
37656
- price: number;
37657
- };
37658
- };
37659
- createdAt: Date;
37660
- updatedAt: Date;
37661
- deletedAt: Date | null;
37662
- includedQuantity: number;
37663
- }[];
37664
- };
37665
- status: string;
37666
- createdAt: Date;
37667
- updatedAt: Date;
37668
- deletedAt: Date | null;
37669
- provider: string;
37670
- productPrice: {
37671
- currency: string | null;
37672
- name: string | null;
37673
- id: string;
37674
- createdAt: Date;
37675
- updatedAt: Date;
37676
- deletedAt: Date | null;
37677
- priceId: string;
37678
- perUnit: number;
37679
- price: number;
37680
- };
37681
- subscriptionId: string;
37682
- quantity: number;
37683
- amount: number;
37684
- startAt: Date | null;
37685
- expireAt: Date;
37686
- subscriptionProducts: {
37687
- id: string;
37688
- product: {
37689
- name: string;
37690
- type: string;
37691
- id: string;
37692
- createdAt: Date;
37693
- updatedAt: Date;
37694
- deletedAt: Date | null;
37695
- provider: string;
37696
- productId: string;
37697
- omnichannel: string;
37698
- usageType: string | null;
37699
- productPrice: {
37700
- currency: string | null;
37701
- name: string | null;
37702
- id: string;
37703
- createdAt: Date;
37704
- updatedAt: Date;
37705
- deletedAt: Date | null;
37706
- priceId: string;
37707
- perUnit: number;
37708
- price: number;
37709
- };
37710
- relatedProducts: {
37711
- id: string;
37712
- product: {
37713
- name: string;
37714
- type: string;
37715
- id: string;
37716
- createdAt: Date;
37717
- updatedAt: Date;
37718
- deletedAt: Date | null;
37719
- provider: string;
37720
- productId: string;
37721
- omnichannel: string;
37722
- usageType: string | null;
37723
- productPrice: {
37724
- currency: string | null;
37725
- name: string | null;
37726
- id: string;
37727
- createdAt: Date;
37728
- updatedAt: Date;
37729
- deletedAt: Date | null;
37730
- priceId: string;
37731
- perUnit: number;
37732
- price: number;
37733
- };
37734
- };
37735
- createdAt: Date;
37736
- updatedAt: Date;
37737
- deletedAt: Date | null;
37738
- includedQuantity: number;
37739
- }[];
37740
- };
37741
- createdAt: Date;
37742
- updatedAt: Date;
37743
- deletedAt: Date | null;
37744
- limit: number;
37745
- subscriptionItemId: string;
37746
- usage: number | null;
37747
- }[];
37748
- }, {
37749
- name: string | null;
37750
- type: string;
37751
- interval: string;
37752
- id: string;
37753
- product: {
37754
- name: string;
37755
- type: string;
37756
- id: string;
37757
- createdAt: Date;
37758
- updatedAt: Date;
37759
- deletedAt: Date | null;
37760
- provider: string;
37761
- productId: string;
37762
- omnichannel: string;
37763
- usageType: string | null;
37764
- productPrice: {
37765
- currency: string | null;
37766
- name: string | null;
37767
- id: string;
37768
- createdAt: Date;
37769
- updatedAt: Date;
37770
- deletedAt: Date | null;
37771
- priceId: string;
37772
- perUnit: number;
37773
- price: number;
37774
- };
37775
- relatedProducts: {
37776
- id: string;
37777
- product: {
37778
- name: string;
37779
- type: string;
37780
- id: string;
37781
- createdAt: Date;
37782
- updatedAt: Date;
37783
- deletedAt: Date | null;
37784
- provider: string;
37785
- productId: string;
37786
- omnichannel: string;
37787
- usageType: string | null;
37788
- productPrice: {
37789
- currency: string | null;
37790
- name: string | null;
37791
- id: string;
37792
- createdAt: Date;
37793
- updatedAt: Date;
37794
- deletedAt: Date | null;
37795
- priceId: string;
37796
- perUnit: number;
37797
- price: number;
37798
- };
37799
- };
37800
- createdAt: Date;
37801
- updatedAt: Date;
37802
- deletedAt: Date | null;
37803
- includedQuantity: number;
37804
- }[];
37805
- };
37806
- status: string;
37807
- createdAt: Date;
37808
- updatedAt: Date;
37809
- deletedAt: Date | null;
37810
- provider: string;
37811
- productPrice: {
37812
- currency: string | null;
37813
- name: string | null;
37814
- id: string;
37815
- createdAt: Date;
37816
- updatedAt: Date;
37817
- deletedAt: Date | null;
37818
- priceId: string;
37819
- perUnit: number;
37820
- price: number;
37821
- };
37822
- subscriptionId: string;
37823
- quantity: number;
37824
- amount: number;
37825
- startAt: Date | null;
37826
- expireAt: Date;
37827
- subscriptionProducts: {
37828
- id: string;
37829
- product: {
37830
- name: string;
37831
- type: string;
37832
- id: string;
37833
- createdAt: Date;
37834
- updatedAt: Date;
37835
- deletedAt: Date | null;
37836
- provider: string;
37837
- productId: string;
37838
- omnichannel: string;
37839
- usageType: string | null;
37840
- productPrice: {
37841
- currency: string | null;
37842
- name: string | null;
37843
- id: string;
37844
- createdAt: Date;
37845
- updatedAt: Date;
37846
- deletedAt: Date | null;
37847
- priceId: string;
37848
- perUnit: number;
37849
- price: number;
37850
- };
37851
- relatedProducts: {
37852
- id: string;
37853
- product: {
37854
- name: string;
37855
- type: string;
37856
- id: string;
37857
- createdAt: Date;
37858
- updatedAt: Date;
37859
- deletedAt: Date | null;
37860
- provider: string;
37861
- productId: string;
37862
- omnichannel: string;
37863
- usageType: string | null;
37864
- productPrice: {
37865
- currency: string | null;
37866
- name: string | null;
37867
- id: string;
37868
- createdAt: Date;
37869
- updatedAt: Date;
37870
- deletedAt: Date | null;
37871
- priceId: string;
37872
- perUnit: number;
37873
- price: number;
37874
- };
37875
- };
37876
- createdAt: Date;
37877
- updatedAt: Date;
37878
- deletedAt: Date | null;
37879
- includedQuantity: number;
37880
- }[];
37881
- };
37882
- createdAt: Date;
37883
- updatedAt: Date;
37884
- deletedAt: Date | null;
37885
- limit: number;
37886
- subscriptionItemId: string;
37887
- usage: number | null;
37888
- }[];
37889
- }>;
37890
- }, "strip", import("zod").ZodTypeAny, {
37891
- requestId: string;
37892
- subscription: {
37893
- name: string | null;
37894
- type: string;
37895
- interval: string;
37896
- id: string;
37897
- product: {
37898
- name: string;
37899
- type: string;
37900
- id: string;
37901
- createdAt: Date;
37902
- updatedAt: Date;
37903
- deletedAt: Date | null;
37904
- provider: string;
37905
- productId: string;
37906
- omnichannel: string;
37907
- usageType: string | null;
37908
- productPrice: {
37909
- currency: string | null;
37910
- name: string | null;
37911
- id: string;
37912
- createdAt: Date;
37913
- updatedAt: Date;
37914
- deletedAt: Date | null;
37915
- priceId: string;
37916
- perUnit: number;
37917
- price: number;
37918
- };
37919
- relatedProducts: {
37920
- id: string;
37921
- product: {
37922
- name: string;
37923
- type: string;
37924
- id: string;
37925
- createdAt: Date;
37926
- updatedAt: Date;
37927
- deletedAt: Date | null;
37928
- provider: string;
37929
- productId: string;
37930
- omnichannel: string;
37931
- usageType: string | null;
37932
- productPrice: {
37933
- currency: string | null;
37934
- name: string | null;
37935
- id: string;
37936
- createdAt: Date;
37937
- updatedAt: Date;
37938
- deletedAt: Date | null;
37939
- priceId: string;
37940
- perUnit: number;
37941
- price: number;
37942
- };
37943
- };
37944
- createdAt: Date;
37945
- updatedAt: Date;
37946
- deletedAt: Date | null;
37947
- includedQuantity: number;
37948
- }[];
37949
- };
37950
- status: string;
37951
- createdAt: Date;
37952
- updatedAt: Date;
37953
- deletedAt: Date | null;
37954
- provider: string;
37955
- productPrice: {
37956
- currency: string | null;
37957
- name: string | null;
37958
- id: string;
37959
- createdAt: Date;
37960
- updatedAt: Date;
37961
- deletedAt: Date | null;
37962
- priceId: string;
37963
- perUnit: number;
37964
- price: number;
37965
- };
37966
- subscriptionId: string;
37967
- quantity: number;
37968
- amount: number;
37969
- startAt: Date | null;
37970
- expireAt: Date;
37971
- subscriptionProducts: {
37972
- id: string;
37973
- product: {
37974
- name: string;
37975
- type: string;
37976
- id: string;
37977
- createdAt: Date;
37978
- updatedAt: Date;
37979
- deletedAt: Date | null;
37980
- provider: string;
37981
- productId: string;
37982
- omnichannel: string;
37983
- usageType: string | null;
37984
- productPrice: {
37985
- currency: string | null;
37986
- name: string | null;
37987
- id: string;
37988
- createdAt: Date;
37989
- updatedAt: Date;
37990
- deletedAt: Date | null;
37991
- priceId: string;
37992
- perUnit: number;
37993
- price: number;
37994
- };
37995
- relatedProducts: {
37996
- id: string;
37997
- product: {
37998
- name: string;
37999
- type: string;
38000
- id: string;
38001
- createdAt: Date;
38002
- updatedAt: Date;
38003
- deletedAt: Date | null;
38004
- provider: string;
38005
- productId: string;
38006
- omnichannel: string;
38007
- usageType: string | null;
38008
- productPrice: {
38009
- currency: string | null;
38010
- name: string | null;
38011
- id: string;
38012
- createdAt: Date;
38013
- updatedAt: Date;
38014
- deletedAt: Date | null;
38015
- priceId: string;
38016
- perUnit: number;
38017
- price: number;
38018
- };
38019
- };
38020
- createdAt: Date;
38021
- updatedAt: Date;
38022
- deletedAt: Date | null;
38023
- includedQuantity: number;
38024
- }[];
38025
- };
38026
- createdAt: Date;
38027
- updatedAt: Date;
38028
- deletedAt: Date | null;
38029
- limit: number;
38030
- subscriptionItemId: string;
38031
- usage: number | null;
38032
- }[];
38033
- };
38034
- }, {
38035
- requestId: string;
38036
- subscription: {
38037
- name: string | null;
38038
- type: string;
38039
- interval: string;
38040
- id: string;
38041
- product: {
38042
- name: string;
38043
- type: string;
38044
- id: string;
38045
- createdAt: Date;
38046
- updatedAt: Date;
38047
- deletedAt: Date | null;
38048
- provider: string;
38049
- productId: string;
38050
- omnichannel: string;
38051
- usageType: string | null;
38052
- productPrice: {
38053
- currency: string | null;
38054
- name: string | null;
38055
- id: string;
38056
- createdAt: Date;
38057
- updatedAt: Date;
38058
- deletedAt: Date | null;
38059
- priceId: string;
38060
- perUnit: number;
38061
- price: number;
38062
- };
38063
- relatedProducts: {
38064
- id: string;
38065
- product: {
38066
- name: string;
38067
- type: string;
38068
- id: string;
38069
- createdAt: Date;
38070
- updatedAt: Date;
38071
- deletedAt: Date | null;
38072
- provider: string;
38073
- productId: string;
38074
- omnichannel: string;
38075
- usageType: string | null;
38076
- productPrice: {
38077
- currency: string | null;
38078
- name: string | null;
38079
- id: string;
38080
- createdAt: Date;
38081
- updatedAt: Date;
38082
- deletedAt: Date | null;
38083
- priceId: string;
38084
- perUnit: number;
38085
- price: number;
38086
- };
38087
- };
38088
- createdAt: Date;
38089
- updatedAt: Date;
38090
- deletedAt: Date | null;
38091
- includedQuantity: number;
38092
- }[];
38093
- };
38094
- status: string;
38095
- createdAt: Date;
38096
- updatedAt: Date;
38097
- deletedAt: Date | null;
38098
- provider: string;
38099
- productPrice: {
38100
- currency: string | null;
38101
- name: string | null;
38102
- id: string;
38103
- createdAt: Date;
38104
- updatedAt: Date;
38105
- deletedAt: Date | null;
38106
- priceId: string;
38107
- perUnit: number;
38108
- price: number;
38109
- };
38110
- subscriptionId: string;
38111
- quantity: number;
38112
- amount: number;
38113
- startAt: Date | null;
38114
- expireAt: Date;
38115
- subscriptionProducts: {
38116
- id: string;
38117
- product: {
38118
- name: string;
38119
- type: string;
38120
- id: string;
38121
- createdAt: Date;
38122
- updatedAt: Date;
38123
- deletedAt: Date | null;
38124
- provider: string;
38125
- productId: string;
38126
- omnichannel: string;
38127
- usageType: string | null;
38128
- productPrice: {
38129
- currency: string | null;
38130
- name: string | null;
38131
- id: string;
38132
- createdAt: Date;
38133
- updatedAt: Date;
38134
- deletedAt: Date | null;
38135
- priceId: string;
38136
- perUnit: number;
38137
- price: number;
38138
- };
38139
- relatedProducts: {
38140
- id: string;
38141
- product: {
38142
- name: string;
38143
- type: string;
38144
- id: string;
38145
- createdAt: Date;
38146
- updatedAt: Date;
38147
- deletedAt: Date | null;
38148
- provider: string;
38149
- productId: string;
38150
- omnichannel: string;
38151
- usageType: string | null;
38152
- productPrice: {
38153
- currency: string | null;
38154
- name: string | null;
38155
- id: string;
38156
- createdAt: Date;
38157
- updatedAt: Date;
38158
- deletedAt: Date | null;
38159
- priceId: string;
38160
- perUnit: number;
38161
- price: number;
38162
- };
38163
- };
38164
- createdAt: Date;
38165
- updatedAt: Date;
38166
- deletedAt: Date | null;
38167
- includedQuantity: number;
38168
- }[];
38169
- };
38170
- createdAt: Date;
38171
- updatedAt: Date;
38172
- deletedAt: Date | null;
38173
- limit: number;
38174
- subscriptionItemId: string;
38175
- usage: number | null;
38176
- }[];
38177
- };
38178
- }>;
38179
- 500: import("zod").ZodObject<{
38180
- message: import("zod").ZodString;
38181
- error: import("zod").ZodAny;
38182
- }, "strip", import("zod").ZodTypeAny, {
38183
- message: string;
38184
- error?: any;
38185
- }, {
38186
- message: string;
38187
- error?: any;
38188
- }>;
38189
- };
38190
- path: "subscriptions/";
38191
- };
38192
- updateSubscription: {
38193
- body: import("zod").ZodObject<{
38194
- planProductId: import("zod").ZodString;
38195
- subscriptionId: import("zod").ZodString;
38196
- subscriptionProducts: import("zod").ZodArray<import("zod").ZodObject<{
38197
- productId: import("zod").ZodString;
38198
- quantity: import("zod").ZodNumber;
38199
- }, "strip", import("zod").ZodTypeAny, {
38200
- productId: string;
38201
- quantity: number;
38202
- }, {
38203
- productId: string;
38204
- quantity: number;
38205
- }>, "many">;
38206
- }, "strip", import("zod").ZodTypeAny, {
38207
- subscriptionId: string;
38208
- subscriptionProducts: {
38209
- productId: string;
38210
- quantity: number;
38211
- }[];
38212
- planProductId: string;
38213
- }, {
38214
- subscriptionId: string;
38215
- subscriptionProducts: {
38216
- productId: string;
38217
- quantity: number;
38218
- }[];
38219
- planProductId: string;
38220
- }>;
38221
- method: "PATCH";
38222
- responses: {
38223
- 200: import("zod").ZodObject<{
38224
- requestId: import("zod").ZodString;
38225
- message: import("zod").ZodString;
38226
- requireCheckout: import("zod").ZodBoolean;
38227
- checkoutUrl: import("zod").ZodNullable<import("zod").ZodString>;
38228
- }, "strip", import("zod").ZodTypeAny, {
38229
- message: string;
38230
- requestId: string;
38231
- requireCheckout: boolean;
38232
- checkoutUrl: string | null;
38233
- }, {
38234
- message: string;
38235
- requestId: string;
38236
- requireCheckout: boolean;
38237
- checkoutUrl: string | null;
38238
- }>;
38239
- 500: import("zod").ZodObject<{
38240
- message: import("zod").ZodString;
38241
- error: import("zod").ZodAny;
38242
- }, "strip", import("zod").ZodTypeAny, {
38243
- message: string;
38244
- error?: any;
38245
- }, {
38246
- message: string;
38247
- error?: any;
38248
- }>;
38249
- };
38250
- path: "subscriptions/";
38251
- };
38252
- topUpBalance: {
38253
- body: import("zod").ZodObject<{
38254
- quantity: import("zod").ZodNumber;
38255
- }, "strip", import("zod").ZodTypeAny, {
38256
- quantity: number;
38257
- }, {
38258
- quantity: number;
38259
- }>;
38260
- method: "POST";
38261
- responses: {
38262
- 200: import("zod").ZodObject<{
38263
- requestId: import("zod").ZodString;
38264
- checkoutUrl: import("zod").ZodString;
38265
- }, "strip", import("zod").ZodTypeAny, {
38266
- requestId: string;
38267
- checkoutUrl: string;
38268
- }, {
38269
- requestId: string;
38270
- checkoutUrl: string;
38271
- }>;
38272
- 500: import("zod").ZodObject<{
38273
- message: import("zod").ZodString;
38274
- error: import("zod").ZodAny;
38275
- }, "strip", import("zod").ZodTypeAny, {
38276
- message: string;
38277
- error?: any;
38278
- }, {
38279
- message: string;
38280
- error?: any;
38281
- }>;
38282
- };
38283
- path: "subscriptions/top-up";
38284
- };
38285
- getAvailablePlan: {
38286
- method: "GET";
38287
- query: null;
38288
- responses: {
38289
- 200: import("zod").ZodObject<{
38290
- requestId: import("zod").ZodString;
38291
- data: import("zod").ZodArray<import("zod").ZodObject<{
38292
- id: import("zod").ZodString;
38293
- createdAt: import("zod").ZodDate;
38294
- updatedAt: import("zod").ZodDate;
38295
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
38296
- provider: import("zod").ZodString;
38297
- productId: import("zod").ZodString;
38298
- name: import("zod").ZodString;
38299
- type: import("zod").ZodString;
38300
- omnichannel: import("zod").ZodString;
38301
- usageType: import("zod").ZodNullable<import("zod").ZodString>;
38302
- productPrice: import("zod").ZodObject<{
38303
- id: import("zod").ZodString;
38304
- createdAt: import("zod").ZodDate;
38305
- updatedAt: import("zod").ZodDate;
38306
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
38307
- priceId: import("zod").ZodString;
38308
- name: import("zod").ZodNullable<import("zod").ZodString>;
38309
- perUnit: import("zod").ZodNumber;
38310
- price: import("zod").ZodNumber;
38311
- currency: import("zod").ZodNullable<import("zod").ZodString>;
38312
- }, "strip", import("zod").ZodTypeAny, {
38313
- currency: string | null;
38314
- name: string | null;
38315
- id: string;
38316
- createdAt: Date;
38317
- updatedAt: Date;
38318
- deletedAt: Date | null;
38319
- priceId: string;
38320
- perUnit: number;
38321
- price: number;
38322
- }, {
38323
- currency: string | null;
38324
- name: string | null;
38325
- id: string;
38326
- createdAt: Date;
38327
- updatedAt: Date;
38328
- deletedAt: Date | null;
38329
- priceId: string;
38330
- perUnit: number;
38331
- price: number;
38332
- }>;
38333
- relatedProducts: import("zod").ZodArray<import("zod").ZodObject<{
38334
- id: import("zod").ZodString;
38335
- createdAt: import("zod").ZodDate;
38336
- updatedAt: import("zod").ZodDate;
38337
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
38338
- includedQuantity: import("zod").ZodNumber;
38339
- product: import("zod").ZodObject<{
38340
- id: import("zod").ZodString;
38341
- createdAt: import("zod").ZodDate;
38342
- updatedAt: import("zod").ZodDate;
38343
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
38344
- provider: import("zod").ZodString;
38345
- productId: import("zod").ZodString;
38346
- name: import("zod").ZodString;
38347
- type: import("zod").ZodString;
38348
- omnichannel: import("zod").ZodString;
38349
- usageType: import("zod").ZodNullable<import("zod").ZodString>;
38350
- productPrice: import("zod").ZodObject<{
38351
- id: import("zod").ZodString;
38352
- createdAt: import("zod").ZodDate;
38353
- updatedAt: import("zod").ZodDate;
38354
- deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
38355
- priceId: import("zod").ZodString;
38356
- name: import("zod").ZodNullable<import("zod").ZodString>;
38357
- perUnit: import("zod").ZodNumber;
38358
- price: import("zod").ZodNumber;
38359
- currency: import("zod").ZodNullable<import("zod").ZodString>;
38360
- }, "strip", import("zod").ZodTypeAny, {
38361
- currency: string | null;
38362
- name: string | null;
38363
- id: string;
38364
- createdAt: Date;
38365
- updatedAt: Date;
38366
- deletedAt: Date | null;
38367
- priceId: string;
38368
- perUnit: number;
38369
- price: number;
38370
- }, {
38371
- currency: string | null;
38372
- name: string | null;
38373
- id: string;
38374
- createdAt: Date;
38375
- updatedAt: Date;
38376
- deletedAt: Date | null;
38377
- priceId: string;
38378
- perUnit: number;
38379
- price: number;
38380
- }>;
38381
- }, "strip", import("zod").ZodTypeAny, {
38382
- name: string;
38383
- type: string;
38384
- id: string;
38385
- createdAt: Date;
38386
- updatedAt: Date;
38387
- deletedAt: Date | null;
38388
- provider: string;
38389
- productId: string;
38390
- omnichannel: string;
38391
- usageType: string | null;
38392
- productPrice: {
38393
- currency: string | null;
38394
- name: string | null;
38395
- id: string;
38396
- createdAt: Date;
38397
- updatedAt: Date;
38398
- deletedAt: Date | null;
38399
- priceId: string;
38400
- perUnit: number;
38401
- price: number;
38402
- };
38403
- }, {
38404
- name: string;
38405
- type: string;
38406
- id: string;
38407
- createdAt: Date;
38408
- updatedAt: Date;
38409
- deletedAt: Date | null;
38410
- provider: string;
38411
- productId: string;
38412
- omnichannel: string;
38413
- usageType: string | null;
38414
- productPrice: {
38415
- currency: string | null;
38416
- name: string | null;
38417
- id: string;
38418
- createdAt: Date;
38419
- updatedAt: Date;
38420
- deletedAt: Date | null;
38421
- priceId: string;
38422
- perUnit: number;
38423
- price: number;
38424
- };
38425
- }>;
38426
- }, "strip", import("zod").ZodTypeAny, {
38427
- id: string;
38428
- product: {
38429
- name: string;
38430
- type: string;
38431
- id: string;
38432
- createdAt: Date;
38433
- updatedAt: Date;
38434
- deletedAt: Date | null;
38435
- provider: string;
38436
- productId: string;
38437
- omnichannel: string;
38438
- usageType: string | null;
38439
- productPrice: {
38440
- currency: string | null;
38441
- name: string | null;
38442
- id: string;
38443
- createdAt: Date;
38444
- updatedAt: Date;
38445
- deletedAt: Date | null;
38446
- priceId: string;
38447
- perUnit: number;
38448
- price: number;
38449
- };
38450
- };
38451
- createdAt: Date;
38452
- updatedAt: Date;
38453
- deletedAt: Date | null;
38454
- includedQuantity: number;
38455
- }, {
38456
- id: string;
38457
- product: {
38458
- name: string;
38459
- type: string;
38460
- id: string;
38461
- createdAt: Date;
38462
- updatedAt: Date;
38463
- deletedAt: Date | null;
38464
- provider: string;
38465
- productId: string;
38466
- omnichannel: string;
38467
- usageType: string | null;
38468
- productPrice: {
38469
- currency: string | null;
38470
- name: string | null;
38471
- id: string;
38472
- createdAt: Date;
38473
- updatedAt: Date;
38474
- deletedAt: Date | null;
38475
- priceId: string;
38476
- perUnit: number;
38477
- price: number;
38478
- };
38479
- };
38480
- createdAt: Date;
38481
- updatedAt: Date;
38482
- deletedAt: Date | null;
38483
- includedQuantity: number;
38484
- }>, "many">;
38485
- }, "strip", import("zod").ZodTypeAny, {
38486
- name: string;
38487
- type: string;
38488
- id: string;
38489
- createdAt: Date;
38490
- updatedAt: Date;
38491
- deletedAt: Date | null;
38492
- provider: string;
38493
- productId: string;
38494
- omnichannel: string;
38495
- usageType: string | null;
38496
- productPrice: {
38497
- currency: string | null;
38498
- name: string | null;
38499
- id: string;
38500
- createdAt: Date;
38501
- updatedAt: Date;
38502
- deletedAt: Date | null;
38503
- priceId: string;
38504
- perUnit: number;
38505
- price: number;
38506
- };
38507
- relatedProducts: {
38508
- id: string;
38509
- product: {
38510
- name: string;
38511
- type: string;
38512
- id: string;
38513
- createdAt: Date;
38514
- updatedAt: Date;
38515
- deletedAt: Date | null;
38516
- provider: string;
38517
- productId: string;
38518
- omnichannel: string;
38519
- usageType: string | null;
38520
- productPrice: {
38521
- currency: string | null;
38522
- name: string | null;
38523
- id: string;
38524
- createdAt: Date;
38525
- updatedAt: Date;
38526
- deletedAt: Date | null;
38527
- priceId: string;
38528
- perUnit: number;
38529
- price: number;
38530
- };
38531
- };
38532
- createdAt: Date;
38533
- updatedAt: Date;
38534
- deletedAt: Date | null;
38535
- includedQuantity: number;
38536
- }[];
38537
- }, {
38538
- name: string;
38539
- type: string;
38540
- id: string;
38541
- createdAt: Date;
38542
- updatedAt: Date;
38543
- deletedAt: Date | null;
38544
- provider: string;
38545
- productId: string;
38546
- omnichannel: string;
38547
- usageType: string | null;
38548
- productPrice: {
38549
- currency: string | null;
38550
- name: string | null;
38551
- id: string;
38552
- createdAt: Date;
38553
- updatedAt: Date;
38554
- deletedAt: Date | null;
38555
- priceId: string;
38556
- perUnit: number;
38557
- price: number;
38558
- };
38559
- relatedProducts: {
38560
- id: string;
38561
- product: {
38562
- name: string;
38563
- type: string;
38564
- id: string;
38565
- createdAt: Date;
38566
- updatedAt: Date;
38567
- deletedAt: Date | null;
38568
- provider: string;
38569
- productId: string;
38570
- omnichannel: string;
38571
- usageType: string | null;
38572
- productPrice: {
38573
- currency: string | null;
38574
- name: string | null;
38575
- id: string;
38576
- createdAt: Date;
38577
- updatedAt: Date;
38578
- deletedAt: Date | null;
38579
- priceId: string;
38580
- perUnit: number;
38581
- price: number;
38582
- };
38583
- };
38584
- createdAt: Date;
38585
- updatedAt: Date;
38586
- deletedAt: Date | null;
38587
- includedQuantity: number;
38588
- }[];
38589
- }>, "many">;
38590
- }, "strip", import("zod").ZodTypeAny, {
38591
- data: {
38592
- name: string;
38593
- type: string;
38594
- id: string;
38595
- createdAt: Date;
38596
- updatedAt: Date;
38597
- deletedAt: Date | null;
38598
- provider: string;
38599
- productId: string;
38600
- omnichannel: string;
38601
- usageType: string | null;
38602
- productPrice: {
38603
- currency: string | null;
38604
- name: string | null;
38605
- id: string;
38606
- createdAt: Date;
38607
- updatedAt: Date;
38608
- deletedAt: Date | null;
38609
- priceId: string;
38610
- perUnit: number;
38611
- price: number;
38612
- };
38613
- relatedProducts: {
38614
- id: string;
38615
- product: {
38616
- name: string;
38617
- type: string;
38618
- id: string;
38619
- createdAt: Date;
38620
- updatedAt: Date;
38621
- deletedAt: Date | null;
38622
- provider: string;
38623
- productId: string;
38624
- omnichannel: string;
38625
- usageType: string | null;
38626
- productPrice: {
38627
- currency: string | null;
38628
- name: string | null;
38629
- id: string;
38630
- createdAt: Date;
38631
- updatedAt: Date;
38632
- deletedAt: Date | null;
38633
- priceId: string;
38634
- perUnit: number;
38635
- price: number;
38636
- };
38637
- };
38638
- createdAt: Date;
38639
- updatedAt: Date;
38640
- deletedAt: Date | null;
38641
- includedQuantity: number;
38642
- }[];
38643
- }[];
38644
- requestId: string;
38645
- }, {
38646
- data: {
38647
- name: string;
38648
- type: string;
38649
- id: string;
38650
- createdAt: Date;
38651
- updatedAt: Date;
38652
- deletedAt: Date | null;
38653
- provider: string;
38654
- productId: string;
38655
- omnichannel: string;
38656
- usageType: string | null;
38657
- productPrice: {
38658
- currency: string | null;
38659
- name: string | null;
38660
- id: string;
38661
- createdAt: Date;
38662
- updatedAt: Date;
38663
- deletedAt: Date | null;
38664
- priceId: string;
38665
- perUnit: number;
38666
- price: number;
38667
- };
38668
- relatedProducts: {
38669
- id: string;
38670
- product: {
38671
- name: string;
38672
- type: string;
38673
- id: string;
38674
- createdAt: Date;
38675
- updatedAt: Date;
38676
- deletedAt: Date | null;
38677
- provider: string;
38678
- productId: string;
38679
- omnichannel: string;
38680
- usageType: string | null;
38681
- productPrice: {
38682
- currency: string | null;
38683
- name: string | null;
38684
- id: string;
38685
- createdAt: Date;
38686
- updatedAt: Date;
38687
- deletedAt: Date | null;
38688
- priceId: string;
38689
- perUnit: number;
38690
- price: number;
38691
- };
38692
- };
38693
- createdAt: Date;
38694
- updatedAt: Date;
38695
- deletedAt: Date | null;
38696
- includedQuantity: number;
38697
- }[];
38698
- }[];
38699
- requestId: string;
38700
- }>;
38701
- 500: import("zod").ZodObject<{
38702
- message: import("zod").ZodString;
38703
- error: import("zod").ZodAny;
38704
- }, "strip", import("zod").ZodTypeAny, {
38705
- message: string;
38706
- error?: any;
38707
- }, {
38708
- message: string;
38709
- error?: any;
38710
- }>;
38711
- };
38712
- path: "subscriptions/available-plan";
38713
- };
38714
- };
38715
36825
  };
38716
36826
  export declare const contactContract: {
38717
36827
  contact: {
@@ -70906,6 +69016,87 @@ export declare const extensionContract: {
70906
69016
  'x-client-timezone'?: string | undefined;
70907
69017
  }>>>;
70908
69018
  };
69019
+ requestNewExtension: {
69020
+ body: null;
69021
+ summary: "Request new extension.";
69022
+ method: "POST";
69023
+ responses: {
69024
+ 200: import("zod").ZodObject<{
69025
+ requestId: import("zod").ZodString;
69026
+ message: import("zod").ZodString;
69027
+ }, "strip", import("zod").ZodTypeAny, {
69028
+ message: string;
69029
+ requestId: string;
69030
+ }, {
69031
+ message: string;
69032
+ requestId: string;
69033
+ }>;
69034
+ 400: import("zod").ZodObject<{
69035
+ message: import("zod").ZodString;
69036
+ }, "strip", import("zod").ZodTypeAny, {
69037
+ message: string;
69038
+ }, {
69039
+ message: string;
69040
+ }>;
69041
+ 401: import("zod").ZodObject<{
69042
+ message: import("zod").ZodString;
69043
+ error: import("zod").ZodAny;
69044
+ }, "strip", import("zod").ZodTypeAny, {
69045
+ message: string;
69046
+ error?: any;
69047
+ }, {
69048
+ message: string;
69049
+ error?: any;
69050
+ }>;
69051
+ 404: import("zod").ZodObject<{
69052
+ message: import("zod").ZodString;
69053
+ error: import("zod").ZodAny;
69054
+ }, "strip", import("zod").ZodTypeAny, {
69055
+ message: string;
69056
+ error?: any;
69057
+ }, {
69058
+ message: string;
69059
+ error?: any;
69060
+ }>;
69061
+ 422: import("zod").ZodObject<{
69062
+ message: import("zod").ZodString;
69063
+ error: import("zod").ZodAny;
69064
+ }, "strip", import("zod").ZodTypeAny, {
69065
+ message: string;
69066
+ error?: any;
69067
+ }, {
69068
+ message: string;
69069
+ error?: any;
69070
+ }>;
69071
+ 500: import("zod").ZodObject<{
69072
+ message: import("zod").ZodString;
69073
+ error: import("zod").ZodAny;
69074
+ }, "strip", import("zod").ZodTypeAny, {
69075
+ message: string;
69076
+ error?: any;
69077
+ }, {
69078
+ message: string;
69079
+ error?: any;
69080
+ }>;
69081
+ };
69082
+ path: "extension/request-new-extension";
69083
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
69084
+ 'x-tenant': import("zod").ZodString;
69085
+ authorization: import("zod").ZodString;
69086
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
69087
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
69088
+ }, "strip", import("zod").ZodTypeAny, {
69089
+ 'x-tenant': string;
69090
+ authorization: string;
69091
+ 'x-client-timezone': string;
69092
+ 'x-code'?: string | undefined;
69093
+ }, {
69094
+ 'x-tenant': string;
69095
+ authorization: string;
69096
+ 'x-code'?: string | undefined;
69097
+ 'x-client-timezone'?: string | undefined;
69098
+ }>>>;
69099
+ };
70909
69100
  };
70910
69101
  };
70911
69102
  export declare const commentActivityContract: {
@@ -86942,6 +85133,7 @@ export declare const platformContract: {
86942
85133
  } | undefined;
86943
85134
  }>;
86944
85135
  messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
85136
+ telegramBusinessConnectionId: import("zod").ZodNullable<import("zod").ZodString>;
86945
85137
  }, "strip", import("zod").ZodTypeAny, {
86946
85138
  id: string;
86947
85139
  channel: {
@@ -87023,6 +85215,7 @@ export declare const platformContract: {
87023
85215
  id: string;
87024
85216
  email: string;
87025
85217
  } | null;
85218
+ telegramBusinessConnectionId: string | null;
87026
85219
  lastMessage?: string | undefined;
87027
85220
  handleTime?: number | undefined;
87028
85221
  metadata?: any;
@@ -87108,6 +85301,7 @@ export declare const platformContract: {
87108
85301
  id: string;
87109
85302
  email: string;
87110
85303
  } | null;
85304
+ telegramBusinessConnectionId: string | null;
87111
85305
  lastMessage?: string | undefined;
87112
85306
  handleTime?: number | undefined;
87113
85307
  metadata?: any;
@@ -87361,6 +85555,7 @@ export declare const platformContract: {
87361
85555
  id: string;
87362
85556
  email: string;
87363
85557
  } | null;
85558
+ telegramBusinessConnectionId: string | null;
87364
85559
  lastMessage?: string | undefined;
87365
85560
  handleTime?: number | undefined;
87366
85561
  metadata?: any;
@@ -87485,6 +85680,7 @@ export declare const platformContract: {
87485
85680
  id: string;
87486
85681
  email: string;
87487
85682
  } | null;
85683
+ telegramBusinessConnectionId: string | null;
87488
85684
  lastMessage?: string | undefined;
87489
85685
  handleTime?: number | undefined;
87490
85686
  metadata?: any;
@@ -107810,6 +106006,7 @@ export declare const platformContract: {
107810
106006
  } | undefined;
107811
106007
  }>;
107812
106008
  messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
106009
+ telegramBusinessConnectionId: import("zod").ZodNullable<import("zod").ZodString>;
107813
106010
  }, "strip", import("zod").ZodTypeAny, {
107814
106011
  id: string;
107815
106012
  channel: {
@@ -107891,6 +106088,7 @@ export declare const platformContract: {
107891
106088
  id: string;
107892
106089
  email: string;
107893
106090
  } | null;
106091
+ telegramBusinessConnectionId: string | null;
107894
106092
  lastMessage?: string | undefined;
107895
106093
  handleTime?: number | undefined;
107896
106094
  metadata?: any;
@@ -107976,6 +106174,7 @@ export declare const platformContract: {
107976
106174
  id: string;
107977
106175
  email: string;
107978
106176
  } | null;
106177
+ telegramBusinessConnectionId: string | null;
107979
106178
  lastMessage?: string | undefined;
107980
106179
  handleTime?: number | undefined;
107981
106180
  metadata?: any;
@@ -108229,6 +106428,7 @@ export declare const platformContract: {
108229
106428
  id: string;
108230
106429
  email: string;
108231
106430
  } | null;
106431
+ telegramBusinessConnectionId: string | null;
108232
106432
  lastMessage?: string | undefined;
108233
106433
  handleTime?: number | undefined;
108234
106434
  metadata?: any;
@@ -108353,6 +106553,7 @@ export declare const platformContract: {
108353
106553
  id: string;
108354
106554
  email: string;
108355
106555
  } | null;
106556
+ telegramBusinessConnectionId: string | null;
108356
106557
  lastMessage?: string | undefined;
108357
106558
  handleTime?: number | undefined;
108358
106559
  metadata?: any;
@@ -128113,6 +126314,7 @@ export declare const platformTelegramContract: {
128113
126314
  } | undefined;
128114
126315
  }>;
128115
126316
  messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
126317
+ telegramBusinessConnectionId: import("zod").ZodNullable<import("zod").ZodString>;
128116
126318
  }, "strip", import("zod").ZodTypeAny, {
128117
126319
  id: string;
128118
126320
  channel: {
@@ -128194,6 +126396,7 @@ export declare const platformTelegramContract: {
128194
126396
  id: string;
128195
126397
  email: string;
128196
126398
  } | null;
126399
+ telegramBusinessConnectionId: string | null;
128197
126400
  lastMessage?: string | undefined;
128198
126401
  handleTime?: number | undefined;
128199
126402
  metadata?: any;
@@ -128279,6 +126482,7 @@ export declare const platformTelegramContract: {
128279
126482
  id: string;
128280
126483
  email: string;
128281
126484
  } | null;
126485
+ telegramBusinessConnectionId: string | null;
128282
126486
  lastMessage?: string | undefined;
128283
126487
  handleTime?: number | undefined;
128284
126488
  metadata?: any;
@@ -128532,6 +126736,7 @@ export declare const platformTelegramContract: {
128532
126736
  id: string;
128533
126737
  email: string;
128534
126738
  } | null;
126739
+ telegramBusinessConnectionId: string | null;
128535
126740
  lastMessage?: string | undefined;
128536
126741
  handleTime?: number | undefined;
128537
126742
  metadata?: any;
@@ -128656,6 +126861,7 @@ export declare const platformTelegramContract: {
128656
126861
  id: string;
128657
126862
  email: string;
128658
126863
  } | null;
126864
+ telegramBusinessConnectionId: string | null;
128659
126865
  lastMessage?: string | undefined;
128660
126866
  handleTime?: number | undefined;
128661
126867
  metadata?: any;
@@ -146911,6 +145117,7 @@ export declare const platformMessengerContract: {
146911
145117
  } | undefined;
146912
145118
  }>;
146913
145119
  messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
145120
+ telegramBusinessConnectionId: import("zod").ZodNullable<import("zod").ZodString>;
146914
145121
  }, "strip", import("zod").ZodTypeAny, {
146915
145122
  id: string;
146916
145123
  channel: {
@@ -146992,6 +145199,7 @@ export declare const platformMessengerContract: {
146992
145199
  id: string;
146993
145200
  email: string;
146994
145201
  } | null;
145202
+ telegramBusinessConnectionId: string | null;
146995
145203
  lastMessage?: string | undefined;
146996
145204
  handleTime?: number | undefined;
146997
145205
  metadata?: any;
@@ -147077,6 +145285,7 @@ export declare const platformMessengerContract: {
147077
145285
  id: string;
147078
145286
  email: string;
147079
145287
  } | null;
145288
+ telegramBusinessConnectionId: string | null;
147080
145289
  lastMessage?: string | undefined;
147081
145290
  handleTime?: number | undefined;
147082
145291
  metadata?: any;
@@ -147330,6 +145539,7 @@ export declare const platformMessengerContract: {
147330
145539
  id: string;
147331
145540
  email: string;
147332
145541
  } | null;
145542
+ telegramBusinessConnectionId: string | null;
147333
145543
  lastMessage?: string | undefined;
147334
145544
  handleTime?: number | undefined;
147335
145545
  metadata?: any;
@@ -147454,6 +145664,7 @@ export declare const platformMessengerContract: {
147454
145664
  id: string;
147455
145665
  email: string;
147456
145666
  } | null;
145667
+ telegramBusinessConnectionId: string | null;
147457
145668
  lastMessage?: string | undefined;
147458
145669
  handleTime?: number | undefined;
147459
145670
  metadata?: any;
@@ -167623,6 +165834,7 @@ export declare const platformInstagramContract: {
167623
165834
  } | undefined;
167624
165835
  }>;
167625
165836
  messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
165837
+ telegramBusinessConnectionId: import("zod").ZodNullable<import("zod").ZodString>;
167626
165838
  }, "strip", import("zod").ZodTypeAny, {
167627
165839
  id: string;
167628
165840
  channel: {
@@ -167704,6 +165916,7 @@ export declare const platformInstagramContract: {
167704
165916
  id: string;
167705
165917
  email: string;
167706
165918
  } | null;
165919
+ telegramBusinessConnectionId: string | null;
167707
165920
  lastMessage?: string | undefined;
167708
165921
  handleTime?: number | undefined;
167709
165922
  metadata?: any;
@@ -167789,6 +166002,7 @@ export declare const platformInstagramContract: {
167789
166002
  id: string;
167790
166003
  email: string;
167791
166004
  } | null;
166005
+ telegramBusinessConnectionId: string | null;
167792
166006
  lastMessage?: string | undefined;
167793
166007
  handleTime?: number | undefined;
167794
166008
  metadata?: any;
@@ -168042,6 +166256,7 @@ export declare const platformInstagramContract: {
168042
166256
  id: string;
168043
166257
  email: string;
168044
166258
  } | null;
166259
+ telegramBusinessConnectionId: string | null;
168045
166260
  lastMessage?: string | undefined;
168046
166261
  handleTime?: number | undefined;
168047
166262
  metadata?: any;
@@ -168166,6 +166381,7 @@ export declare const platformInstagramContract: {
168166
166381
  id: string;
168167
166382
  email: string;
168168
166383
  } | null;
166384
+ telegramBusinessConnectionId: string | null;
168169
166385
  lastMessage?: string | undefined;
168170
166386
  handleTime?: number | undefined;
168171
166387
  metadata?: any;
@@ -189437,6 +187653,7 @@ export declare const platformSMSContract: {
189437
187653
  } | undefined;
189438
187654
  }>;
189439
187655
  messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
187656
+ telegramBusinessConnectionId: import("zod").ZodNullable<import("zod").ZodString>;
189440
187657
  }, "strip", import("zod").ZodTypeAny, {
189441
187658
  id: string;
189442
187659
  channel: {
@@ -189518,6 +187735,7 @@ export declare const platformSMSContract: {
189518
187735
  id: string;
189519
187736
  email: string;
189520
187737
  } | null;
187738
+ telegramBusinessConnectionId: string | null;
189521
187739
  lastMessage?: string | undefined;
189522
187740
  handleTime?: number | undefined;
189523
187741
  metadata?: any;
@@ -189603,6 +187821,7 @@ export declare const platformSMSContract: {
189603
187821
  id: string;
189604
187822
  email: string;
189605
187823
  } | null;
187824
+ telegramBusinessConnectionId: string | null;
189606
187825
  lastMessage?: string | undefined;
189607
187826
  handleTime?: number | undefined;
189608
187827
  metadata?: any;
@@ -189856,6 +188075,7 @@ export declare const platformSMSContract: {
189856
188075
  id: string;
189857
188076
  email: string;
189858
188077
  } | null;
188078
+ telegramBusinessConnectionId: string | null;
189859
188079
  lastMessage?: string | undefined;
189860
188080
  handleTime?: number | undefined;
189861
188081
  metadata?: any;
@@ -189980,6 +188200,7 @@ export declare const platformSMSContract: {
189980
188200
  id: string;
189981
188201
  email: string;
189982
188202
  } | null;
188203
+ telegramBusinessConnectionId: string | null;
189983
188204
  lastMessage?: string | undefined;
189984
188205
  handleTime?: number | undefined;
189985
188206
  metadata?: any;
@@ -190363,6 +188584,7 @@ export declare const platformWhatsappContract: {
190363
188584
  } | undefined;
190364
188585
  }>;
190365
188586
  messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
188587
+ telegramBusinessConnectionId: import("zod").ZodNullable<import("zod").ZodString>;
190366
188588
  }, "strip", import("zod").ZodTypeAny, {
190367
188589
  id: string;
190368
188590
  channel: {
@@ -190444,6 +188666,7 @@ export declare const platformWhatsappContract: {
190444
188666
  id: string;
190445
188667
  email: string;
190446
188668
  } | null;
188669
+ telegramBusinessConnectionId: string | null;
190447
188670
  lastMessage?: string | undefined;
190448
188671
  handleTime?: number | undefined;
190449
188672
  metadata?: any;
@@ -190529,6 +188752,7 @@ export declare const platformWhatsappContract: {
190529
188752
  id: string;
190530
188753
  email: string;
190531
188754
  } | null;
188755
+ telegramBusinessConnectionId: string | null;
190532
188756
  lastMessage?: string | undefined;
190533
188757
  handleTime?: number | undefined;
190534
188758
  metadata?: any;
@@ -190782,6 +189006,7 @@ export declare const platformWhatsappContract: {
190782
189006
  id: string;
190783
189007
  email: string;
190784
189008
  } | null;
189009
+ telegramBusinessConnectionId: string | null;
190785
189010
  lastMessage?: string | undefined;
190786
189011
  handleTime?: number | undefined;
190787
189012
  metadata?: any;
@@ -190906,6 +189131,7 @@ export declare const platformWhatsappContract: {
190906
189131
  id: string;
190907
189132
  email: string;
190908
189133
  } | null;
189134
+ telegramBusinessConnectionId: string | null;
190909
189135
  lastMessage?: string | undefined;
190910
189136
  handleTime?: number | undefined;
190911
189137
  metadata?: any;
@@ -214727,6 +212953,7 @@ export declare const facebookFeedContract: {
214727
212953
  } | undefined;
214728
212954
  }>;
214729
212955
  messengerTags: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"post_purchase_update">, import("zod").ZodLiteral<"account_update">, import("zod").ZodLiteral<"confirmed_event_update">]>>;
212956
+ telegramBusinessConnectionId: import("zod").ZodNullable<import("zod").ZodString>;
214730
212957
  }, "strip", import("zod").ZodTypeAny, {
214731
212958
  id: string;
214732
212959
  channel: {
@@ -214808,6 +213035,7 @@ export declare const facebookFeedContract: {
214808
213035
  id: string;
214809
213036
  email: string;
214810
213037
  } | null;
213038
+ telegramBusinessConnectionId: string | null;
214811
213039
  lastMessage?: string | undefined;
214812
213040
  handleTime?: number | undefined;
214813
213041
  metadata?: any;
@@ -214893,6 +213121,7 @@ export declare const facebookFeedContract: {
214893
213121
  id: string;
214894
213122
  email: string;
214895
213123
  } | null;
213124
+ telegramBusinessConnectionId: string | null;
214896
213125
  lastMessage?: string | undefined;
214897
213126
  handleTime?: number | undefined;
214898
213127
  metadata?: any;
@@ -215027,6 +213256,7 @@ export declare const facebookFeedContract: {
215027
213256
  id: string;
215028
213257
  email: string;
215029
213258
  } | null;
213259
+ telegramBusinessConnectionId: string | null;
215030
213260
  lastMessage?: string | undefined;
215031
213261
  handleTime?: number | undefined;
215032
213262
  metadata?: any;
@@ -215155,6 +213385,7 @@ export declare const facebookFeedContract: {
215155
213385
  id: string;
215156
213386
  email: string;
215157
213387
  } | null;
213388
+ telegramBusinessConnectionId: string | null;
215158
213389
  lastMessage?: string | undefined;
215159
213390
  handleTime?: number | undefined;
215160
213391
  metadata?: any;