@algorandfoundation/puya-ts 1.2.0-beta.37 → 1.2.0-beta.39

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 (29) hide show
  1. package/{analyser-service-Bk9GEtDA.js → analyser-service-Cj7WmqeW.js} +3 -3
  2. package/{analyser-service-Bk9GEtDA.js.map → analyser-service-Cj7WmqeW.js.map} +1 -1
  3. package/analyserService.mjs +3 -3
  4. package/{arc4-clientgen-qBTlCOIm.js → arc4-clientgen-7yQnFyxH.js} +2 -2
  5. package/{arc4-clientgen-qBTlCOIm.js.map → arc4-clientgen-7yQnFyxH.js.map} +1 -1
  6. package/awst_build/ptypes/arc4-types.d.ts +3 -3
  7. package/awst_build/ptypes/index.d.ts +12 -12
  8. package/bin/puyats-clientgen.mjs +5 -5
  9. package/bin/puyats-ls.mjs +6 -6
  10. package/bin/run-cli.mjs +8 -8
  11. package/{check-node-version-CLFFTDHN.js → check-node-version-B3GLfQ0t.js} +3 -3
  12. package/{check-node-version-CLFFTDHN.js.map → check-node-version-B3GLfQ0t.js.map} +1 -1
  13. package/cli.mjs +8 -8
  14. package/{compile-ycpMcgmJ.js → compile-DnShUPv7.js} +6 -6
  15. package/{compile-ycpMcgmJ.js.map → compile-DnShUPv7.js.map} +1 -1
  16. package/{contract-class-model-BZeEDGw0.js → contract-class-model-D-NUE8Zg.js} +31 -31
  17. package/contract-class-model-D-NUE8Zg.js.map +1 -0
  18. package/index.mjs +23 -23
  19. package/{options-DD9MApH4.js → options-DLmtdJgF.js} +59 -59
  20. package/options-DLmtdJgF.js.map +1 -0
  21. package/package.json +2 -2
  22. package/{resolve-puya-path-Ba54kz9o.js → resolve-puya-path-CzSo6yHU.js} +4 -4
  23. package/{resolve-puya-path-Ba54kz9o.js.map → resolve-puya-path-CzSo6yHU.js.map} +1 -1
  24. package/{semver-B0p_0XuH.js → semver-DPkkKoZb.js} +2 -2
  25. package/{semver-B0p_0XuH.js.map → semver-DPkkKoZb.js.map} +1 -1
  26. package/{util-Aa8RgOmt.js → util-dcGns5-2.js} +2 -2
  27. package/{util-Aa8RgOmt.js.map → util-dcGns5-2.js.map} +1 -1
  28. package/contract-class-model-BZeEDGw0.js.map +0 -1
  29. package/options-DD9MApH4.js.map +0 -1
@@ -1442,7 +1442,7 @@ const GlobalStateGeneric = new GenericPType({
1442
1442
  name: 'GlobalState',
1443
1443
  module: Constants.moduleNames.algoTs.state,
1444
1444
  parameterise(typeArgs) {
1445
- codeInvariant(typeArgs.length === 1, 'GlobalState type expects exactly one type parameter');
1445
+ codeInvariant(typeArgs.length === 1, `${this.name} type expects exactly one type parameter`);
1446
1446
  return new GlobalStateType({
1447
1447
  content: typeArgs[0],
1448
1448
  });
@@ -1498,7 +1498,7 @@ const LocalStateGeneric = new GenericPType({
1498
1498
  name: 'LocalState',
1499
1499
  module: Constants.moduleNames.algoTs.state,
1500
1500
  parameterise(typeArgs) {
1501
- codeInvariant(typeArgs.length === 1, 'LocalState type expects exactly one type parameter');
1501
+ codeInvariant(typeArgs.length === 1, `${this.name} type expects exactly one type parameter`);
1502
1502
  return new LocalStateType({
1503
1503
  content: typeArgs[0],
1504
1504
  });
@@ -1836,7 +1836,7 @@ class TupleBasePType extends PType {
1836
1836
  class MutableTuplePType extends TupleBasePType {
1837
1837
  [PType.IdSymbol] = 'MutableTuplePType';
1838
1838
  constructor(props) {
1839
- super({ ...props });
1839
+ super(props);
1840
1840
  }
1841
1841
  get wtype() {
1842
1842
  return new wtypes.ARC4Tuple({
@@ -1866,7 +1866,7 @@ const ArrayGeneric = new GenericPType({
1866
1866
  name: 'Array',
1867
1867
  module: Constants.moduleNames.typescript.es5,
1868
1868
  parameterise(typeArgs) {
1869
- codeInvariant(typeArgs.length === 1, 'Array expects exactly 1 type argument');
1869
+ codeInvariant(typeArgs.length === 1, `${this.name} expects exactly 1 type argument`);
1870
1870
  return new ArrayPType({ elementType: typeArgs[0] });
1871
1871
  },
1872
1872
  });
@@ -1907,7 +1907,7 @@ const ReadonlyArrayGeneric = new GenericPType({
1907
1907
  name: 'ReadonlyArray',
1908
1908
  module: Constants.moduleNames.typescript.es5,
1909
1909
  parameterise(typeArgs) {
1910
- codeInvariant(typeArgs.length === 1, 'ReadonlyArray expects exactly 1 type argument');
1910
+ codeInvariant(typeArgs.length === 1, `${this.name} expects exactly 1 type argument`);
1911
1911
  return new ReadonlyArrayPType({ elementType: typeArgs[0] });
1912
1912
  },
1913
1913
  });
@@ -1924,9 +1924,9 @@ const FixedArrayGeneric = new GenericPType({
1924
1924
  name: 'FixedArray',
1925
1925
  module: Constants.moduleNames.algoTs.arrays,
1926
1926
  parameterise(typeArgs) {
1927
- codeInvariant(typeArgs.length === 2, 'FixedArray type expects exactly one type parameters');
1927
+ codeInvariant(typeArgs.length === 2, `${this.name} type expects exactly two type parameters`);
1928
1928
  const [elementType, arraySize] = typeArgs;
1929
- codeInvariant(arraySize instanceof NumericLiteralPType, `Array size generic type param for FixedArray must be a literal number. Inferred type is ${arraySize.name}`);
1929
+ codeInvariant(arraySize instanceof NumericLiteralPType, `Array size generic type param for ${this.name} must be a literal number. Inferred type is ${arraySize.name}`);
1930
1930
  if (elementType instanceof TransientType) {
1931
1931
  throw new CodeError(elementType.typeMessage);
1932
1932
  }
@@ -1942,7 +1942,7 @@ class FixedArrayPType extends PType {
1942
1942
  module = Constants.moduleNames.algoTs.arrays;
1943
1943
  arraySize;
1944
1944
  get fullName() {
1945
- return `${this.module}::FixedArray<${this.elementType.fullName}>`;
1945
+ return `${this.module}::FixedArray<${this.elementType.fullName}, ${this.arraySize}>`;
1946
1946
  }
1947
1947
  constructor(props) {
1948
1948
  super();
@@ -1965,7 +1965,7 @@ const ReadonlyGeneric = new GenericPType({
1965
1965
  name: 'Readonly',
1966
1966
  module: Constants.moduleNames.typescript.es5,
1967
1967
  parameterise([obj, ...rest]) {
1968
- codeInvariant(obj instanceof MutableObjectPType && !rest.length, 'Readonly expects exactly 1 generic type arg that is an object type');
1968
+ codeInvariant(obj instanceof MutableObjectPType && !rest.length, `${this.name} expects exactly 1 generic type arg that is an object type`);
1969
1969
  return obj.toImmutable();
1970
1970
  },
1971
1971
  });
@@ -2129,7 +2129,7 @@ const PromiseGeneric = new GenericPType({
2129
2129
  name: 'Promise',
2130
2130
  module: Constants.moduleNames.typescript.es5,
2131
2131
  parameterise(ptypes) {
2132
- codeInvariant(ptypes.length === 1, 'Promise expects exactly 1 generic parameter');
2132
+ codeInvariant(ptypes.length === 1, `${this.name} expects exactly 1 generic parameter`);
2133
2133
  return new PromiseType({ resolveType: ptypes[0] });
2134
2134
  },
2135
2135
  });
@@ -2319,7 +2319,7 @@ const applicationPType = new ABICompatibleInstanceType({
2319
2319
  module: Constants.moduleNames.algoTs.reference,
2320
2320
  abiTypeSignature: 'application',
2321
2321
  });
2322
- const ApplicationFunctionType = new LibFunctionType({
2322
+ const ApplicationFunction = new LibFunctionType({
2323
2323
  name: 'Application',
2324
2324
  module: Constants.moduleNames.algoTs.reference,
2325
2325
  });
@@ -2462,7 +2462,7 @@ const applicationCallGtxnType = new GroupTransactionPType({
2462
2462
  name: 'ApplicationCallTxn',
2463
2463
  kind: TransactionKind.appl,
2464
2464
  });
2465
- const ApplicationTxnFunction = new TransactionFunctionType({
2465
+ const ApplicationCallTxnFunction = new TransactionFunctionType({
2466
2466
  name: 'ApplicationCallTxn',
2467
2467
  module: Constants.moduleNames.algoTs.gtxn,
2468
2468
  kind: TransactionKind.appl,
@@ -2589,7 +2589,7 @@ const IterableIteratorGeneric = new GenericPType({
2589
2589
  name: 'IterableIterator',
2590
2590
  module: Constants.moduleNames.typescript.iterable,
2591
2591
  parameterise(typeArgs) {
2592
- codeInvariant(typeArgs.length >= 1 && typeArgs.length <= 3, 'IterableIterator type expects 1-3 type parameters');
2592
+ codeInvariant(typeArgs.length >= 1 && typeArgs.length <= 3, `${this.name} type expects 1-3 type parameters`);
2593
2593
  // Currently ignoring return and next types
2594
2594
  const [yieldType] = typeArgs;
2595
2595
  return new IterableIteratorType({
@@ -2604,7 +2604,7 @@ class IterableIteratorType extends TransientType {
2604
2604
  super({
2605
2605
  name: `IterableIterator<${itemType.name}>`,
2606
2606
  module: Constants.moduleNames.typescript.iterable,
2607
- typeMessage: '`IterableIterator` is not valid as a variable, parameter, return, or property type. ',
2607
+ typeMessage: '`IterableIterator` is not valid as a variable, parameter, return, or property type',
2608
2608
  expressionMessage: 'IterableIterator expressions can only be used in for loops',
2609
2609
  singleton: false,
2610
2610
  });
@@ -2621,7 +2621,7 @@ const GeneratorGeneric = new GenericPType({
2621
2621
  name: 'Generator',
2622
2622
  module: Constants.moduleNames.typescript.generator,
2623
2623
  parameterise(ptypes) {
2624
- codeInvariant(ptypes.length === 3, 'Generator type expects exactly 3 type params');
2624
+ codeInvariant(ptypes.length === 3, `${this.name} type expects exactly 3 type params`);
2625
2625
  const [itemType, returnType, nextType] = ptypes;
2626
2626
  return new GeneratorType({
2627
2627
  itemType,
@@ -2644,32 +2644,32 @@ class GeneratorType extends UnsupportedType {
2644
2644
  this.nextType = nextType;
2645
2645
  }
2646
2646
  }
2647
- const paymentItxnFn = new TransactionFunctionType({
2647
+ const paymentItxnFunction = new TransactionFunctionType({
2648
2648
  name: 'payment',
2649
2649
  module: Constants.moduleNames.algoTs.itxn,
2650
2650
  kind: TransactionKind.pay,
2651
2651
  });
2652
- const keyRegistrationItxnFn = new TransactionFunctionType({
2652
+ const keyRegistrationItxnFunction = new TransactionFunctionType({
2653
2653
  name: 'keyRegistration',
2654
2654
  module: Constants.moduleNames.algoTs.itxn,
2655
2655
  kind: TransactionKind.keyreg,
2656
2656
  });
2657
- const assetConfigItxnFn = new TransactionFunctionType({
2657
+ const assetConfigItxnFunction = new TransactionFunctionType({
2658
2658
  name: 'assetConfig',
2659
2659
  module: Constants.moduleNames.algoTs.itxn,
2660
2660
  kind: TransactionKind.acfg,
2661
2661
  });
2662
- const assetTransferItxnFn = new TransactionFunctionType({
2662
+ const assetTransferItxnFunction = new TransactionFunctionType({
2663
2663
  name: 'assetTransfer',
2664
2664
  module: Constants.moduleNames.algoTs.itxn,
2665
2665
  kind: TransactionKind.axfer,
2666
2666
  });
2667
- const assetFreezeItxnFn = new TransactionFunctionType({
2667
+ const assetFreezeItxnFunction = new TransactionFunctionType({
2668
2668
  name: 'assetFreeze',
2669
2669
  module: Constants.moduleNames.algoTs.itxn,
2670
2670
  kind: TransactionKind.afrz,
2671
2671
  });
2672
- const applicationCallItxnFn = new TransactionFunctionType({
2672
+ const applicationCallItxnFunction = new TransactionFunctionType({
2673
2673
  name: 'applicationCall',
2674
2674
  module: Constants.moduleNames.algoTs.itxn,
2675
2675
  kind: TransactionKind.appl,
@@ -2758,7 +2758,7 @@ const applicationCallItxnParamsType = new ItxnParamsPType({
2758
2758
  name: 'ApplicationCallItxnParams',
2759
2759
  kind: TransactionKind.appl,
2760
2760
  });
2761
- const applicationItxnType = new InnerTransactionPType({
2761
+ const applicationCallItxnType = new InnerTransactionPType({
2762
2762
  name: 'ApplicationCallInnerTxn',
2763
2763
  kind: TransactionKind.appl,
2764
2764
  });
@@ -2786,7 +2786,7 @@ const TemplateVarFunction = new LibFunctionType({
2786
2786
  name: 'TemplateVar',
2787
2787
  module: Constants.moduleNames.algoTs.templateVar,
2788
2788
  });
2789
- const compileFunctionType = new LibFunctionType({
2789
+ const compileFunction = new LibFunctionType({
2790
2790
  name: 'compile',
2791
2791
  module: Constants.moduleNames.algoTs.compiled,
2792
2792
  });
@@ -2811,7 +2811,7 @@ const compiledLogicSigType = new ImmutableObjectPType({
2811
2811
  name: 'CompiledLogicSig',
2812
2812
  module: Constants.moduleNames.algoTs.compiled,
2813
2813
  }),
2814
- description: 'Provides account for a Logic Signature. Created by calling `compile(LogicSigType)``',
2814
+ description: 'Provides account for a Logic Signature. Created by calling `compile(LogicSigType)`',
2815
2815
  properties: [{ name: 'account', ptype: accountPType, description: null }],
2816
2816
  });
2817
2817
  const arc28EmitFunction = new LibFunctionType({
@@ -2851,8 +2851,8 @@ const PolytypeClassMethodHelper = new LibFunctionType({
2851
2851
  const ReferenceArrayGeneric = new GenericPType({
2852
2852
  name: 'ReferenceArray',
2853
2853
  module: Constants.moduleNames.algoTs.referenceArray,
2854
- parameterise: (typeArgs) => {
2855
- codeInvariant(typeArgs.length === 1, 'ReferenceArray type expects exactly one type parameter');
2854
+ parameterise(typeArgs) {
2855
+ codeInvariant(typeArgs.length === 1, `${this.name} type expects exactly one type parameter`);
2856
2856
  const [elementType] = typeArgs;
2857
2857
  return new ReferenceArrayType({ elementType: elementType });
2858
2858
  },
@@ -2884,11 +2884,11 @@ const itxnComposePType = new LibObjType({
2884
2884
  module: Constants.moduleNames.algoTs.itxnCompose,
2885
2885
  name: 'itxnCompose',
2886
2886
  });
2887
- const cloneFunctionPType = new LibFunctionType({
2887
+ const cloneFunction = new LibFunctionType({
2888
2888
  name: 'clone',
2889
2889
  module: Constants.moduleNames.algoTs.util,
2890
2890
  });
2891
- const validateEncodingFunctionPType = new LibFunctionType({
2891
+ const validateEncodingFunction = new LibFunctionType({
2892
2892
  name: 'validateEncoding',
2893
2893
  module: Constants.moduleNames.algoTs.util,
2894
2894
  });
@@ -2906,7 +2906,7 @@ function getInnerTransactionType(kind) {
2906
2906
  case TransactionKind.afrz:
2907
2907
  return assetFreezeItxnType;
2908
2908
  case TransactionKind.appl:
2909
- return applicationItxnType;
2909
+ return applicationCallItxnType;
2910
2910
  }
2911
2911
  }
2912
2912
  function getItxnParamsType(kind) {
@@ -5453,5 +5453,5 @@ class CompilationSet extends CustomKeyMap {
5453
5453
  }
5454
5454
  }
5455
5455
 
5456
- export { FixedArrayGeneric as $, AbsolutePath as A, AssetConfigTxnFunction as B, ContractReference as C, AssetFreezeTxnFunction as D, AssetFunction as E, AssetTransferTxnFunction as F, BaseContractClassType as G, BigIntLiteralPType as H, InternalError as I, BigIntPType as J, BigUintFunction as K, LogLevel as L, BooleanFunction as M, BoxGeneric as N, OnCompletionAction as O, PuyaError as P, BoxMapGeneric as Q, BoxMapPType as R, BoxPType as S, BytesFunction as T, BytesGeneric as U, BytesPType as V, ClassMethodDecoratorContext as W, ClearStateProgram as X, ClusteredContractClassType as Y, ClusteredPrototype as Z, ContractClassPType as _, LoggingContext as a, UnsupportedType as a$, FixedArrayPType as a0, FunctionPType as a1, GeneratorGeneric as a2, GeneratorType as a3, GenericPType as a4, GlobalMapGeneric as a5, GlobalMapType as a6, GlobalStateGeneric as a7, GlobalStateType as a8, GroupTransactionPType as a9, NumericLiteralPType as aA, ObjectLiteralPType as aB, ObjectWithOptionalFieldsType as aC, PType as aD, PaymentTxnFunction as aE, PolytypeClassMethodHelper as aF, PromiseGeneric as aG, PromiseType as aH, ReadonlyArrayGeneric as aI, ReadonlyArrayPType as aJ, ReadonlyGeneric as aK, ReadonlyTuplePType as aL, ReferenceArrayGeneric as aM, ReferenceArrayType as aN, StringFunction as aO, SuperPrototypeSelector as aP, SuperPrototypeSelectorGeneric as aQ, TemplateVarFunction as aR, TransactionFunction as aS, TransactionFunctionType as aT, TransientType as aU, TypeParameterType as aV, Uint64EnumMemberLiteralType as aW, Uint64EnumMemberType as aX, Uint64EnumType as aY, Uint64Function as aZ, UnionPType as a_, ImmutableObjectPType as aa, InnerTransactionPType as ab, InstanceType as ac, InternalType as ad, IntersectionPType as ae, IntrinsicEnumType as af, IntrinsicFunctionGroupType as ag, IntrinsicFunctionGroupTypeType as ah, IntrinsicFunctionType as ai, IntrinsicFunctionTypeType as aj, IterableIteratorGeneric as ak, IterableIteratorType as al, ItxnParamsPType as am, KeyRegistrationTxnFunction as an, LibClassType as ao, LibFunctionType as ap, LibObjType as aq, LocalMapGeneric as ar, LocalMapType as as, LocalStateGeneric as at, LocalStateType as au, LogicSigPType as av, MutableObjectPType as aw, MutableTuplePType as ax, NamespacePType as ay, NumberPType as az, ContractClassModel as b, stringPType as b$, anyItxnParamsType as b0, anyItxnType as b1, anyPType as b2, applicationCallItxnFn as b3, applicationCallItxnParamsType as b4, applicationItxnType as b5, arc28EmitFunction as b6, arc4AbiMethodDecorator as b7, arc4BareMethodDecorator as b8, arc4BaseContractType as b9, errFunction as bA, esSymbol as bB, inputOnlyObjects as bC, isArrayType as bD, isObjectType as bE, isTupleLike as bF, itoaMethod as bG, itxnComposePType as bH, keyRegistrationItxnFn as bI, keyRegistrationItxnParamsType as bJ, keyRegistrationItxnType as bK, logFunction as bL, loggedAssertFunction as bM, loggedErrFunction as bN, logicSigBaseType as bO, logicSigOptionsDecorator as bP, matchFunction as bQ, mimcConfigurationsPType as bR, neverPType as bS, nullPType as bT, numberPType as bU, onCompleteActionType as bV, opUpFeeSourceType as bW, paymentItxnFn as bX, paymentItxnParamsType as bY, paymentItxnType as bZ, readonlyDecorator as b_, assertFunction as ba, assertMatchFunction as bb, assetConfigItxnFn as bc, assetConfigItxnParamsType as bd, assetConfigItxnType as be, assetFreezeItxnFn as bf, assetFreezeItxnParamsType as bg, assetFreezeItxnType as bh, assetTransferItxnFn as bi, assetTransferItxnParamsType as bj, assetTransferItxnType as bk, base64PType as bl, baseContractType as bm, bigIntPType as bn, biguintPType as bo, boolPType as bp, bytesPType as bq, bzeroFunction as br, cloneFunctionPType as bs, compileFunctionType as bt, compiledContractType as bu, compiledLogicSigType as bv, contractOptionsDecorator as bw, ecPType as bx, ecdsaPType as by, ensureBudgetFunction as bz, CodeError as c, UInt64BinaryOperator as c$, submitGroupItxnFunction as c0, transactionTypeType as c1, uint64PType as c2, undefinedPType as c3, unknownPType as c4, urangeFunction as c5, validateEncodingFunctionPType as c6, vrfVerifyPType as c7, uint8ArrayToBigInt as c8, uint8ArrayToBase64 as c9, instanceOfAny as cA, SingleEvaluation as cB, VarExpression as cC, nodeFactory as cD, NotSupported as cE, TupleItemExpression as cF, FieldExpression as cG, IndexExpression as cH, TupleExpression as cI, AppStateExpression as cJ, AppAccountStateExpression as cK, BoxValueExpression as cL, StateGetEx as cM, StateGet as cN, hasFlags as cO, BinaryBooleanOperator as cP, SymbolName as cQ, intersectsFlags as cR, extractModuleName as cS, toSubScript as cT, CompilationSet as cU, ARC4ABIMethodConfig as cV, EqualityComparison as cW, ARC4CreateOption as cX, NewArray as cY, BytesEncoding as cZ, FixableCodeError as c_, uint8ArrayToBase32 as ca, uint8ArrayToUtf8 as cb, base64ToUint8Array as cc, base32ToUint8Array as cd, bigIntToUint8Array as ce, utf8ToUint8Array as cf, LogSource as cg, SourceLocation as ch, isMinLevel as ci, enumFromValue as cj, mkDirIfNotExists as ck, distinct as cl, zipStrict as cm, isIn as cn, wtypes as co, codeInvariant as cp, invariant as cq, throwError as cr, StringConstant as cs, BytesConstant as ct, IntegerConstant as cu, BoolConstant as cv, AddressConstant as cw, MethodConstant as cx, DecimalConstant as cy, TemplateVar as cz, Constants as d, ReturnStatement as d$, tryConvertEnum as d0, NumericComparison as d1, UInt64UnaryOperator as d2, UInt64PostfixUnaryOperator as d3, wrapInCodeError as d4, TransactionKind as d5, LogicSigReference as d6, getInnerTransactionType as d7, getItxnParamsType as d8, CompiledContract as d9, StageInnerTransactions as dA, SubmitInnerTransaction as dB, AssignmentExpression as dC, CommaExpression as dD, NumericComparisonExpression as dE, BytesComparisonExpression as dF, PuyaLibCall as dG, UInt64UnaryOperation as dH, UInt64PostfixUnaryOperation as dI, BigUIntPostfixUnaryOperation as dJ, BytesUnaryOperation as dK, UInt64BinaryOperation as dL, BigUIntBinaryOperation as dM, BooleanBinaryOperation as dN, Not as dO, Emit as dP, Range as dQ, Enumeration as dR, Reversed as dS, StateExists as dT, ARC4Router as dU, MethodSignatureString as dV, SubroutineID as dW, ContractMethodTarget as dX, InstanceMethodTarget as dY, patchErrorLocation as dZ, Goto as d_, ARC4BareMethodConfig as da, MethodSignature as db, BigUIntBinaryOperator as dc, BigUIntPostfixUnaryOperator as dd, BytesBinaryOperator as de, IntrinsicCall as df, enumKeyFromValue as dg, BytesUnaryOperator as dh, PuyaLibFunction as di, Expression as dj, AppStorageKind as dk, transientTypeErrors as dl, getGroupTransactionType as dm, Contract as dn, InstanceSuperMethodTarget as dp, ExpressionStatement as dq, AssertExpression as dr, VoidConstant as ds, ArrayConcat as dt, ArrayPop as du, ArrayReplace as dv, ArrayLength as dw, SizeOf as dx, UpdateInnerTransaction as dy, CheckedMaybe as dz, accountPType as e, ContractMethod as e0, sameSets as e1, Subroutine as e2, LogicSigClassModel as e3, ptypeIn as e4, expandMaybeArray as e5, applicationPType as f, assetPType as g, anyGtxnType as h, assetConfigGtxnType as i, assetTransferGtxnType as j, keyRegistrationGtxnType as k, logger as l, assetFreezeGtxnType as m, applicationCallGtxnType as n, ABICompatibleInstanceType as o, paymentGtxnType as p, ALL_OP_ENUMS as q, AccountFunction as r, AnyPType as s, ApplicationFunctionType as t, ApplicationTxnFunction as u, voidPType as v, ApprovalProgram as w, ArrayGeneric as x, ArrayLiteralPType as y, ArrayPType as z };
5457
- //# sourceMappingURL=contract-class-model-BZeEDGw0.js.map
5456
+ export { FixedArrayGeneric as $, AbsolutePath as A, AssetConfigTxnFunction as B, ContractReference as C, AssetFreezeTxnFunction as D, AssetFunction as E, AssetTransferTxnFunction as F, BaseContractClassType as G, BigIntLiteralPType as H, InternalError as I, BigIntPType as J, BigUintFunction as K, LogLevel as L, BooleanFunction as M, BoxGeneric as N, OnCompletionAction as O, PuyaError as P, BoxMapGeneric as Q, BoxMapPType as R, BoxPType as S, BytesFunction as T, BytesGeneric as U, BytesPType as V, ClassMethodDecoratorContext as W, ClearStateProgram as X, ClusteredContractClassType as Y, ClusteredPrototype as Z, ContractClassPType as _, LoggingContext as a, UnsupportedType as a$, FixedArrayPType as a0, FunctionPType as a1, GeneratorGeneric as a2, GeneratorType as a3, GenericPType as a4, GlobalMapGeneric as a5, GlobalMapType as a6, GlobalStateGeneric as a7, GlobalStateType as a8, GroupTransactionPType as a9, NumericLiteralPType as aA, ObjectLiteralPType as aB, ObjectWithOptionalFieldsType as aC, PType as aD, PaymentTxnFunction as aE, PolytypeClassMethodHelper as aF, PromiseGeneric as aG, PromiseType as aH, ReadonlyArrayGeneric as aI, ReadonlyArrayPType as aJ, ReadonlyGeneric as aK, ReadonlyTuplePType as aL, ReferenceArrayGeneric as aM, ReferenceArrayType as aN, StringFunction as aO, SuperPrototypeSelector as aP, SuperPrototypeSelectorGeneric as aQ, TemplateVarFunction as aR, TransactionFunction as aS, TransactionFunctionType as aT, TransientType as aU, TypeParameterType as aV, Uint64EnumMemberLiteralType as aW, Uint64EnumMemberType as aX, Uint64EnumType as aY, Uint64Function as aZ, UnionPType as a_, ImmutableObjectPType as aa, InnerTransactionPType as ab, InstanceType as ac, InternalType as ad, IntersectionPType as ae, IntrinsicEnumType as af, IntrinsicFunctionGroupType as ag, IntrinsicFunctionGroupTypeType as ah, IntrinsicFunctionType as ai, IntrinsicFunctionTypeType as aj, IterableIteratorGeneric as ak, IterableIteratorType as al, ItxnParamsPType as am, KeyRegistrationTxnFunction as an, LibClassType as ao, LibFunctionType as ap, LibObjType as aq, LocalMapGeneric as ar, LocalMapType as as, LocalStateGeneric as at, LocalStateType as au, LogicSigPType as av, MutableObjectPType as aw, MutableTuplePType as ax, NamespacePType as ay, NumberPType as az, ContractClassModel as b, stringPType as b$, anyItxnParamsType as b0, anyItxnType as b1, anyPType as b2, applicationCallItxnFunction as b3, applicationCallItxnParamsType as b4, applicationCallItxnType as b5, arc28EmitFunction as b6, arc4AbiMethodDecorator as b7, arc4BareMethodDecorator as b8, arc4BaseContractType as b9, errFunction as bA, esSymbol as bB, inputOnlyObjects as bC, isArrayType as bD, isObjectType as bE, isTupleLike as bF, itoaMethod as bG, itxnComposePType as bH, keyRegistrationItxnFunction as bI, keyRegistrationItxnParamsType as bJ, keyRegistrationItxnType as bK, logFunction as bL, loggedAssertFunction as bM, loggedErrFunction as bN, logicSigBaseType as bO, logicSigOptionsDecorator as bP, matchFunction as bQ, mimcConfigurationsPType as bR, neverPType as bS, nullPType as bT, numberPType as bU, onCompleteActionType as bV, opUpFeeSourceType as bW, paymentItxnFunction as bX, paymentItxnParamsType as bY, paymentItxnType as bZ, readonlyDecorator as b_, assertFunction as ba, assertMatchFunction as bb, assetConfigItxnFunction as bc, assetConfigItxnParamsType as bd, assetConfigItxnType as be, assetFreezeItxnFunction as bf, assetFreezeItxnParamsType as bg, assetFreezeItxnType as bh, assetTransferItxnFunction as bi, assetTransferItxnParamsType as bj, assetTransferItxnType as bk, base64PType as bl, baseContractType as bm, bigIntPType as bn, biguintPType as bo, boolPType as bp, bytesPType as bq, bzeroFunction as br, cloneFunction as bs, compileFunction as bt, compiledContractType as bu, compiledLogicSigType as bv, contractOptionsDecorator as bw, ecPType as bx, ecdsaPType as by, ensureBudgetFunction as bz, CodeError as c, UInt64BinaryOperator as c$, submitGroupItxnFunction as c0, transactionTypeType as c1, uint64PType as c2, undefinedPType as c3, unknownPType as c4, urangeFunction as c5, validateEncodingFunction as c6, vrfVerifyPType as c7, uint8ArrayToBigInt as c8, uint8ArrayToBase64 as c9, SingleEvaluation as cA, VarExpression as cB, nodeFactory as cC, NotSupported as cD, TupleItemExpression as cE, FieldExpression as cF, IndexExpression as cG, TupleExpression as cH, AppStateExpression as cI, AppAccountStateExpression as cJ, BoxValueExpression as cK, StateGetEx as cL, StateGet as cM, hasFlags as cN, invariant as cO, BinaryBooleanOperator as cP, SymbolName as cQ, intersectsFlags as cR, extractModuleName as cS, toSubScript as cT, CompilationSet as cU, ARC4ABIMethodConfig as cV, EqualityComparison as cW, ARC4CreateOption as cX, NewArray as cY, BytesEncoding as cZ, FixableCodeError as c_, uint8ArrayToBase32 as ca, uint8ArrayToUtf8 as cb, base64ToUint8Array as cc, base32ToUint8Array as cd, bigIntToUint8Array as ce, utf8ToUint8Array as cf, LogSource as cg, SourceLocation as ch, isMinLevel as ci, enumFromValue as cj, mkDirIfNotExists as ck, distinct as cl, zipStrict as cm, isIn as cn, wtypes as co, codeInvariant as cp, throwError as cq, StringConstant as cr, BytesConstant as cs, IntegerConstant as ct, BoolConstant as cu, AddressConstant as cv, MethodConstant as cw, DecimalConstant as cx, TemplateVar as cy, instanceOfAny as cz, Constants as d, ReturnStatement as d$, tryConvertEnum as d0, NumericComparison as d1, UInt64UnaryOperator as d2, UInt64PostfixUnaryOperator as d3, wrapInCodeError as d4, TransactionKind as d5, LogicSigReference as d6, getInnerTransactionType as d7, getItxnParamsType as d8, CompiledContract as d9, StageInnerTransactions as dA, SubmitInnerTransaction as dB, AssignmentExpression as dC, CommaExpression as dD, NumericComparisonExpression as dE, BytesComparisonExpression as dF, PuyaLibCall as dG, UInt64UnaryOperation as dH, UInt64PostfixUnaryOperation as dI, BigUIntPostfixUnaryOperation as dJ, BytesUnaryOperation as dK, UInt64BinaryOperation as dL, BigUIntBinaryOperation as dM, BooleanBinaryOperation as dN, Not as dO, Emit as dP, Range as dQ, Enumeration as dR, Reversed as dS, StateExists as dT, ARC4Router as dU, MethodSignatureString as dV, SubroutineID as dW, ContractMethodTarget as dX, InstanceMethodTarget as dY, patchErrorLocation as dZ, Goto as d_, ARC4BareMethodConfig as da, MethodSignature as db, BigUIntBinaryOperator as dc, BigUIntPostfixUnaryOperator as dd, BytesBinaryOperator as de, IntrinsicCall as df, enumKeyFromValue as dg, BytesUnaryOperator as dh, PuyaLibFunction as di, Expression as dj, AppStorageKind as dk, transientTypeErrors as dl, getGroupTransactionType as dm, Contract as dn, InstanceSuperMethodTarget as dp, ExpressionStatement as dq, AssertExpression as dr, VoidConstant as ds, ArrayConcat as dt, ArrayPop as du, ArrayReplace as dv, ArrayLength as dw, SizeOf as dx, UpdateInnerTransaction as dy, CheckedMaybe as dz, accountPType as e, ContractMethod as e0, sameSets as e1, Subroutine as e2, LogicSigClassModel as e3, ptypeIn as e4, expandMaybeArray as e5, applicationPType as f, assetPType as g, anyGtxnType as h, assetConfigGtxnType as i, assetTransferGtxnType as j, keyRegistrationGtxnType as k, logger as l, assetFreezeGtxnType as m, applicationCallGtxnType as n, ABICompatibleInstanceType as o, paymentGtxnType as p, ALL_OP_ENUMS as q, AccountFunction as r, AnyPType as s, ApplicationCallTxnFunction as t, ApplicationFunction as u, voidPType as v, ApprovalProgram as w, ArrayGeneric as x, ArrayLiteralPType as y, ArrayPType as z };
5457
+ //# sourceMappingURL=contract-class-model-D-NUE8Zg.js.map