adaptic-backend 1.0.341 → 1.0.343

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.
Files changed (45) hide show
  1. package/Account.cjs +4 -12
  2. package/Alert.cjs +11 -33
  3. package/Allocation.cjs +11 -33
  4. package/AlpacaAccount.cjs +8 -24
  5. package/Authenticator.cjs +8 -24
  6. package/Customer.cjs +8 -24
  7. package/Session.cjs +8 -24
  8. package/User.cjs +5 -15
  9. package/esm/Account.d.ts.map +1 -1
  10. package/esm/Account.js.map +1 -1
  11. package/esm/Account.mjs +4 -12
  12. package/esm/Alert.d.ts.map +1 -1
  13. package/esm/Alert.js.map +1 -1
  14. package/esm/Alert.mjs +11 -33
  15. package/esm/Allocation.d.ts.map +1 -1
  16. package/esm/Allocation.js.map +1 -1
  17. package/esm/Allocation.mjs +11 -33
  18. package/esm/AlpacaAccount.d.ts.map +1 -1
  19. package/esm/AlpacaAccount.js.map +1 -1
  20. package/esm/AlpacaAccount.mjs +8 -24
  21. package/esm/Authenticator.d.ts.map +1 -1
  22. package/esm/Authenticator.js.map +1 -1
  23. package/esm/Authenticator.mjs +8 -24
  24. package/esm/Customer.d.ts.map +1 -1
  25. package/esm/Customer.js.map +1 -1
  26. package/esm/Customer.mjs +8 -24
  27. package/esm/Session.d.ts.map +1 -1
  28. package/esm/Session.js.map +1 -1
  29. package/esm/Session.mjs +8 -24
  30. package/esm/User.d.ts.map +1 -1
  31. package/esm/User.js.map +1 -1
  32. package/esm/User.mjs +5 -15
  33. package/esm/generated/typegraphql-prisma/enhance.js.map +1 -1
  34. package/esm/generated/typegraphql-prisma/enhance.mjs +1 -1
  35. package/esm/generated/typegraphql-prisma/resolvers/inputs/AccountWhereUniqueInput.d.ts +1 -1
  36. package/esm/generated/typegraphql-prisma/resolvers/inputs/AccountWhereUniqueInput.d.ts.map +1 -1
  37. package/esm/generated/typegraphql-prisma/resolvers/inputs/AccountWhereUniqueInput.js.map +1 -1
  38. package/esm/generated/typegraphql-prisma/resolvers/inputs/AccountWhereUniqueInput.mjs +7 -7
  39. package/generated/typegraphql-prisma/enhance.cjs +1 -1
  40. package/generated/typegraphql-prisma/enhance.js.map +1 -1
  41. package/generated/typegraphql-prisma/resolvers/inputs/AccountWhereUniqueInput.cjs +6 -6
  42. package/generated/typegraphql-prisma/resolvers/inputs/AccountWhereUniqueInput.d.ts +1 -1
  43. package/generated/typegraphql-prisma/resolvers/inputs/AccountWhereUniqueInput.d.ts.map +1 -1
  44. package/generated/typegraphql-prisma/resolvers/inputs/AccountWhereUniqueInput.js.map +1 -1
  45. package/package.json +1 -1
package/esm/Alert.mjs CHANGED
@@ -178,12 +178,10 @@ export const Alert = {
178
178
  : { connectOrCreate: props.alpacaAccount.user.accounts.map((item) => ({
179
179
  where: {
180
180
  id: item.id !== undefined ? item.id : undefined,
181
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
181
182
  userId: item.userId !== undefined ? {
182
183
  equals: item.userId
183
184
  } : undefined,
184
- providerAccountId: item.providerAccountId !== undefined ? {
185
- equals: item.providerAccountId
186
- } : undefined,
187
185
  },
188
186
  create: {
189
187
  type: item.type !== undefined ? item.type : undefined,
@@ -662,12 +660,10 @@ export const Alert = {
662
660
  } : { upsert: props.alpacaAccount.user.accounts.map((item) => ({
663
661
  where: {
664
662
  id: item.id !== undefined ? item.id : undefined,
663
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
665
664
  userId: item.userId !== undefined ? {
666
665
  equals: item.userId
667
666
  } : undefined,
668
- providerAccountId: item.providerAccountId !== undefined ? {
669
- equals: item.providerAccountId
670
- } : undefined,
671
667
  },
672
668
  update: {
673
669
  id: item.id !== undefined ? {
@@ -834,12 +830,10 @@ export const Alert = {
834
830
  : { connectOrCreate: props.alpacaAccount.user.accounts.map((item) => ({
835
831
  where: {
836
832
  id: item.id !== undefined ? item.id : undefined,
833
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
837
834
  userId: item.userId !== undefined ? {
838
835
  equals: item.userId
839
836
  } : undefined,
840
- providerAccountId: item.providerAccountId !== undefined ? {
841
- equals: item.providerAccountId
842
- } : undefined,
843
837
  },
844
838
  create: {
845
839
  type: item.type !== undefined ? item.type : undefined,
@@ -1008,12 +1002,10 @@ export const Alert = {
1008
1002
  : { connectOrCreate: props.alpacaAccount.user.accounts.map((item) => ({
1009
1003
  where: {
1010
1004
  id: item.id !== undefined ? item.id : undefined,
1005
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
1011
1006
  userId: item.userId !== undefined ? {
1012
1007
  equals: item.userId
1013
1008
  } : undefined,
1014
- providerAccountId: item.providerAccountId !== undefined ? {
1015
- equals: item.providerAccountId
1016
- } : undefined,
1017
1009
  },
1018
1010
  create: {
1019
1011
  type: item.type !== undefined ? item.type : undefined,
@@ -1277,12 +1269,10 @@ export const Alert = {
1277
1269
  : { connectOrCreate: props.alpacaAccount.user.accounts.map((item) => ({
1278
1270
  where: {
1279
1271
  id: item.id !== undefined ? item.id : undefined,
1272
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
1280
1273
  userId: item.userId !== undefined ? {
1281
1274
  equals: item.userId
1282
1275
  } : undefined,
1283
- providerAccountId: item.providerAccountId !== undefined ? {
1284
- equals: item.providerAccountId
1285
- } : undefined,
1286
1276
  },
1287
1277
  create: {
1288
1278
  type: item.type !== undefined ? item.type : undefined,
@@ -1602,12 +1592,10 @@ export const Alert = {
1602
1592
  } : { upsert: props.alpacaAccount.user.accounts.map((item) => ({
1603
1593
  where: {
1604
1594
  id: item.id !== undefined ? item.id : undefined,
1595
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
1605
1596
  userId: item.userId !== undefined ? {
1606
1597
  equals: item.userId
1607
1598
  } : undefined,
1608
- providerAccountId: item.providerAccountId !== undefined ? {
1609
- equals: item.providerAccountId
1610
- } : undefined,
1611
1599
  },
1612
1600
  update: {
1613
1601
  id: item.id !== undefined ? {
@@ -1774,12 +1762,10 @@ export const Alert = {
1774
1762
  : { connectOrCreate: props.alpacaAccount.user.accounts.map((item) => ({
1775
1763
  where: {
1776
1764
  id: item.id !== undefined ? item.id : undefined,
1765
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
1777
1766
  userId: item.userId !== undefined ? {
1778
1767
  equals: item.userId
1779
1768
  } : undefined,
1780
- providerAccountId: item.providerAccountId !== undefined ? {
1781
- equals: item.providerAccountId
1782
- } : undefined,
1783
1769
  },
1784
1770
  create: {
1785
1771
  type: item.type !== undefined ? item.type : undefined,
@@ -1948,12 +1934,10 @@ export const Alert = {
1948
1934
  : { connectOrCreate: props.alpacaAccount.user.accounts.map((item) => ({
1949
1935
  where: {
1950
1936
  id: item.id !== undefined ? item.id : undefined,
1937
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
1951
1938
  userId: item.userId !== undefined ? {
1952
1939
  equals: item.userId
1953
1940
  } : undefined,
1954
- providerAccountId: item.providerAccountId !== undefined ? {
1955
- equals: item.providerAccountId
1956
- } : undefined,
1957
1941
  },
1958
1942
  create: {
1959
1943
  type: item.type !== undefined ? item.type : undefined,
@@ -2357,12 +2341,10 @@ export const Alert = {
2357
2341
  } : { upsert: prop.alpacaAccount.user.accounts.map((item) => ({
2358
2342
  where: {
2359
2343
  id: item.id !== undefined ? item.id : undefined,
2344
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
2360
2345
  userId: item.userId !== undefined ? {
2361
2346
  equals: item.userId
2362
2347
  } : undefined,
2363
- providerAccountId: item.providerAccountId !== undefined ? {
2364
- equals: item.providerAccountId
2365
- } : undefined,
2366
2348
  },
2367
2349
  update: {
2368
2350
  id: item.id !== undefined ? {
@@ -2529,12 +2511,10 @@ export const Alert = {
2529
2511
  : { connectOrCreate: prop.alpacaAccount.user.accounts.map((item) => ({
2530
2512
  where: {
2531
2513
  id: item.id !== undefined ? item.id : undefined,
2514
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
2532
2515
  userId: item.userId !== undefined ? {
2533
2516
  equals: item.userId
2534
2517
  } : undefined,
2535
- providerAccountId: item.providerAccountId !== undefined ? {
2536
- equals: item.providerAccountId
2537
- } : undefined,
2538
2518
  },
2539
2519
  create: {
2540
2520
  type: item.type !== undefined ? item.type : undefined,
@@ -2703,12 +2683,10 @@ export const Alert = {
2703
2683
  : { connectOrCreate: prop.alpacaAccount.user.accounts.map((item) => ({
2704
2684
  where: {
2705
2685
  id: item.id !== undefined ? item.id : undefined,
2686
+ providerAccountId: item.providerAccountId !== undefined ? item.providerAccountId : undefined,
2706
2687
  userId: item.userId !== undefined ? {
2707
2688
  equals: item.userId
2708
2689
  } : undefined,
2709
- providerAccountId: item.providerAccountId !== undefined ? {
2710
- equals: item.providerAccountId
2711
- } : undefined,
2712
2690
  },
2713
2691
  create: {
2714
2692
  type: item.type !== undefined ? item.type : undefined,
@@ -1 +1 @@
1
- {"version":3,"file":"Allocation.d.ts","sourceRoot":"","sources":["../../src/Allocation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,IAAI,cAAc,EAAE,MAAM,kDAAkD,CAAC;AAChG,OAAO,EAA4B,gBAAgB,EAAE,qBAAqB,EAAoB,MAAM,UAAU,CAAC;AAyE7G,eAAO,MAAM,UAAU;IAErB;;;;;OAKG;IAEH;;;;;;OAMG;kBACiB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;IA8QtH;;;;;;OAMG;sBACqB,cAAc,EAAE,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IA8EpI;;;;;;OAMG;kBACiB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;IAmvBpH;;;;;;OAMG;kBACiB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;IA86BpH;;;;;;OAMG;sBACqB,cAAc,EAAE,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAqvBpI;;;;;;OAMG;kBACiB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;IA2EpH;;;;;;;OAOG;eACc,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,eAAe,GAAG,GAAG,OAAO,CAAC,cAAc,GAAG,IAAI,CAAC;IA2E1I;;;;;OAKG;0BACyB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,EAAE,GAAG,IAAI,CAAC;IAkEtG;;;;;;;OAOG;oBACmB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,eAAe,GAAG,GAAG,OAAO,CAAC,cAAc,EAAE,GAAG,IAAI,CAAC;CAmFlJ,CAAC"}
1
+ {"version":3,"file":"Allocation.d.ts","sourceRoot":"","sources":["../../src/Allocation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,IAAI,cAAc,EAAE,MAAM,kDAAkD,CAAC;AAChG,OAAO,EAA4B,gBAAgB,EAAE,qBAAqB,EAAoB,MAAM,UAAU,CAAC;AAyE7G,eAAO,MAAM,UAAU;IAErB;;;;;OAKG;IAEH;;;;;;OAMG;kBACiB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;IA4QtH;;;;;;OAMG;sBACqB,cAAc,EAAE,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IA8EpI;;;;;;OAMG;kBACiB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;IA6uBpH;;;;;;OAMG;kBACiB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;IAs6BpH;;;;;;OAMG;sBACqB,cAAc,EAAE,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IA+uBpI;;;;;;OAMG;kBACiB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC;IA2EpH;;;;;;;OAOG;eACc,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,eAAe,GAAG,GAAG,OAAO,CAAC,cAAc,GAAG,IAAI,CAAC;IA2E1I;;;;;OAKG;0BACyB,gBAAgB,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,cAAc,EAAE,GAAG,IAAI,CAAC;IAkEtG;;;;;;;OAOG;oBACmB,cAAc,iBAAiB,gBAAgB,CAAC,qBAAqB,CAAC,eAAe,GAAG,GAAG,OAAO,CAAC,cAAc,EAAE,GAAG,IAAI,CAAC;CAmFlJ,CAAC"}