@fluidframework/test-utils 2.0.0-rc.1.0.3 → 2.0.0-rc.2.0.0

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 (151) hide show
  1. package/{.eslintrc.js → .eslintrc.cjs} +4 -1
  2. package/{.mocharc.js → .mocharc.cjs} +1 -1
  3. package/CHANGELOG.md +34 -0
  4. package/README.md +1 -1
  5. package/api-extractor-cjs.json +8 -0
  6. package/api-extractor-lint.json +1 -1
  7. package/api-extractor.json +1 -1
  8. package/api-report/test-utils.api.md +27 -9
  9. package/dist/DriverWrappers.d.ts +3 -0
  10. package/dist/DriverWrappers.d.ts.map +1 -1
  11. package/dist/DriverWrappers.js +3 -0
  12. package/dist/DriverWrappers.js.map +1 -1
  13. package/dist/TestConfigs.d.ts +14 -1
  14. package/dist/TestConfigs.d.ts.map +1 -1
  15. package/dist/TestConfigs.js +14 -3
  16. package/dist/TestConfigs.js.map +1 -1
  17. package/dist/TestSummaryUtils.d.ts +7 -2
  18. package/dist/TestSummaryUtils.d.ts.map +1 -1
  19. package/dist/TestSummaryUtils.js +39 -14
  20. package/dist/TestSummaryUtils.js.map +1 -1
  21. package/dist/containerUtils.d.ts +1 -1
  22. package/dist/containerUtils.d.ts.map +1 -1
  23. package/dist/containerUtils.js +2 -2
  24. package/dist/containerUtils.js.map +1 -1
  25. package/dist/debug.js +2 -2
  26. package/dist/debug.js.map +1 -1
  27. package/dist/index.d.ts +14 -14
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +44 -43
  30. package/dist/index.js.map +1 -1
  31. package/dist/loaderContainerTracker.d.ts +1 -1
  32. package/dist/loaderContainerTracker.d.ts.map +1 -1
  33. package/dist/loaderContainerTracker.js +11 -11
  34. package/dist/loaderContainerTracker.js.map +1 -1
  35. package/dist/localLoader.d.ts +1 -1
  36. package/dist/localLoader.d.ts.map +1 -1
  37. package/dist/localLoader.js +2 -2
  38. package/dist/localLoader.js.map +1 -1
  39. package/dist/package.json +3 -0
  40. package/dist/packageVersion.d.ts +1 -1
  41. package/dist/packageVersion.js +1 -1
  42. package/dist/packageVersion.js.map +1 -1
  43. package/dist/test-utils-alpha.d.ts +7 -3
  44. package/dist/test-utils-beta.d.ts +9 -3
  45. package/dist/test-utils-public.d.ts +9 -3
  46. package/dist/test-utils-untrimmed.d.ts +59 -14
  47. package/dist/testContainerRuntimeFactory.d.ts.map +1 -1
  48. package/dist/testContainerRuntimeFactory.js +9 -2
  49. package/dist/testContainerRuntimeFactory.js.map +1 -1
  50. package/dist/testFluidObject.d.ts +1 -1
  51. package/dist/testFluidObject.d.ts.map +1 -1
  52. package/dist/testFluidObject.js.map +1 -1
  53. package/dist/testObjectProvider.d.ts +34 -11
  54. package/dist/testObjectProvider.d.ts.map +1 -1
  55. package/dist/testObjectProvider.js +71 -38
  56. package/dist/testObjectProvider.js.map +1 -1
  57. package/dist/timeoutUtils.d.ts.map +1 -1
  58. package/dist/timeoutUtils.js.map +1 -1
  59. package/dist/tsdoc-metadata.json +1 -1
  60. package/lib/DriverWrappers.d.ts +35 -0
  61. package/lib/DriverWrappers.d.ts.map +1 -0
  62. package/lib/DriverWrappers.js +54 -0
  63. package/lib/DriverWrappers.js.map +1 -0
  64. package/lib/TestConfigs.d.ts +23 -0
  65. package/lib/TestConfigs.d.ts.map +1 -0
  66. package/lib/TestConfigs.js +24 -0
  67. package/lib/TestConfigs.js.map +1 -0
  68. package/lib/TestSummaryUtils.d.ts +66 -0
  69. package/lib/TestSummaryUtils.d.ts.map +1 -0
  70. package/lib/TestSummaryUtils.js +153 -0
  71. package/lib/TestSummaryUtils.js.map +1 -0
  72. package/lib/containerUtils.d.ts +46 -0
  73. package/lib/containerUtils.d.ts.map +1 -0
  74. package/lib/containerUtils.js +79 -0
  75. package/lib/containerUtils.js.map +1 -0
  76. package/lib/debug.d.ts +7 -0
  77. package/lib/debug.d.ts.map +1 -0
  78. package/lib/debug.js +9 -0
  79. package/lib/debug.js.map +1 -0
  80. package/lib/index.d.ts +19 -0
  81. package/lib/index.d.ts.map +1 -0
  82. package/lib/index.js +18 -0
  83. package/lib/index.js.map +1 -0
  84. package/lib/interfaces.d.ts +25 -0
  85. package/lib/interfaces.d.ts.map +1 -0
  86. package/lib/interfaces.js +6 -0
  87. package/lib/interfaces.js.map +1 -0
  88. package/lib/loaderContainerTracker.d.ts +144 -0
  89. package/lib/loaderContainerTracker.d.ts.map +1 -0
  90. package/lib/loaderContainerTracker.js +631 -0
  91. package/lib/loaderContainerTracker.js.map +1 -0
  92. package/lib/localCodeLoader.d.ts +31 -0
  93. package/lib/localCodeLoader.d.ts.map +1 -0
  94. package/lib/localCodeLoader.js +73 -0
  95. package/lib/localCodeLoader.js.map +1 -0
  96. package/lib/localLoader.d.ts +26 -0
  97. package/lib/localLoader.d.ts.map +1 -0
  98. package/lib/localLoader.js +37 -0
  99. package/lib/localLoader.js.map +1 -0
  100. package/lib/packageVersion.d.ts +9 -0
  101. package/lib/packageVersion.d.ts.map +1 -0
  102. package/lib/packageVersion.js +9 -0
  103. package/lib/packageVersion.js.map +1 -0
  104. package/lib/retry.d.ts +18 -0
  105. package/lib/retry.d.ts.map +1 -0
  106. package/lib/retry.js +37 -0
  107. package/lib/retry.js.map +1 -0
  108. package/lib/test/timeoutUtils.spec.js +165 -0
  109. package/lib/test/timeoutUtils.spec.js.map +1 -0
  110. package/lib/test/types/validateTestUtilsPrevious.generated.js +90 -0
  111. package/lib/test/types/validateTestUtilsPrevious.generated.js.map +1 -0
  112. package/lib/test-utils-alpha.d.ts +309 -0
  113. package/lib/test-utils-beta.d.ts +208 -0
  114. package/lib/test-utils-public.d.ts +208 -0
  115. package/lib/test-utils-untrimmed.d.ts +1046 -0
  116. package/lib/testContainerRuntimeFactory.d.ts +46 -0
  117. package/lib/testContainerRuntimeFactory.d.ts.map +1 -0
  118. package/lib/testContainerRuntimeFactory.js +113 -0
  119. package/lib/testContainerRuntimeFactory.js.map +1 -0
  120. package/lib/testContainerRuntimeFactoryWithDefaultDataStore.d.ts +23 -0
  121. package/lib/testContainerRuntimeFactoryWithDefaultDataStore.d.ts.map +1 -0
  122. package/lib/testContainerRuntimeFactoryWithDefaultDataStore.js +28 -0
  123. package/lib/testContainerRuntimeFactoryWithDefaultDataStore.js.map +1 -0
  124. package/lib/testFluidObject.d.ts +92 -0
  125. package/lib/testFluidObject.d.ts.map +1 -0
  126. package/lib/testFluidObject.js +159 -0
  127. package/lib/testFluidObject.js.map +1 -0
  128. package/lib/testObjectProvider.d.ts +435 -0
  129. package/lib/testObjectProvider.d.ts.map +1 -0
  130. package/lib/testObjectProvider.js +636 -0
  131. package/lib/testObjectProvider.js.map +1 -0
  132. package/lib/timeoutUtils.d.ts +60 -0
  133. package/lib/timeoutUtils.d.ts.map +1 -0
  134. package/lib/timeoutUtils.js +164 -0
  135. package/lib/timeoutUtils.js.map +1 -0
  136. package/package.json +105 -38
  137. package/src/DriverWrappers.ts +3 -0
  138. package/src/TestConfigs.ts +25 -3
  139. package/src/TestSummaryUtils.ts +36 -12
  140. package/src/containerUtils.ts +1 -1
  141. package/src/debug.ts +1 -1
  142. package/src/index.ts +19 -14
  143. package/src/loaderContainerTracker.ts +5 -5
  144. package/src/localLoader.ts +1 -1
  145. package/src/packageVersion.ts +1 -1
  146. package/src/testContainerRuntimeFactory.ts +12 -2
  147. package/src/testFluidObject.ts +1 -1
  148. package/src/testObjectProvider.ts +99 -34
  149. package/src/timeoutUtils.ts +1 -0
  150. package/tsconfig.cjs.json +7 -0
  151. package/tsconfig.json +3 -4
@@ -0,0 +1,90 @@
1
+ use_current_TypeAliasDeclaration_ChannelFactoryRegistry(get_old_TypeAliasDeclaration_ChannelFactoryRegistry());
2
+ use_old_TypeAliasDeclaration_ChannelFactoryRegistry(get_current_TypeAliasDeclaration_ChannelFactoryRegistry());
3
+ use_current_EnumDeclaration_DataObjectFactoryType(get_old_EnumDeclaration_DataObjectFactoryType());
4
+ use_old_EnumDeclaration_DataObjectFactoryType(get_current_EnumDeclaration_DataObjectFactoryType());
5
+ use_current_ClassDeclaration_EventAndErrorTrackingLogger(get_old_ClassDeclaration_EventAndErrorTrackingLogger());
6
+ use_old_ClassDeclaration_EventAndErrorTrackingLogger(get_current_ClassDeclaration_EventAndErrorTrackingLogger());
7
+ use_current_InterfaceDeclaration_IDocumentIdStrategy(get_old_InterfaceDeclaration_IDocumentIdStrategy());
8
+ use_old_InterfaceDeclaration_IDocumentIdStrategy(get_current_InterfaceDeclaration_IDocumentIdStrategy());
9
+ use_current_InterfaceDeclaration_IOpProcessingController(get_old_InterfaceDeclaration_IOpProcessingController());
10
+ use_old_InterfaceDeclaration_IOpProcessingController(get_current_InterfaceDeclaration_IOpProcessingController());
11
+ use_current_InterfaceDeclaration_IProvideTestFluidObject(get_old_InterfaceDeclaration_IProvideTestFluidObject());
12
+ use_old_InterfaceDeclaration_IProvideTestFluidObject(get_current_InterfaceDeclaration_IProvideTestFluidObject());
13
+ use_current_InterfaceDeclaration_ITestContainerConfig(
14
+ // @ts-expect-error compatibility expected to be broken
15
+ get_old_InterfaceDeclaration_ITestContainerConfig());
16
+ use_old_InterfaceDeclaration_ITestContainerConfig(
17
+ // @ts-expect-error compatibility expected to be broken
18
+ get_current_InterfaceDeclaration_ITestContainerConfig());
19
+ use_current_InterfaceDeclaration_ITestFluidObject(get_old_InterfaceDeclaration_ITestFluidObject());
20
+ use_old_InterfaceDeclaration_ITestFluidObject(get_current_InterfaceDeclaration_ITestFluidObject());
21
+ use_current_InterfaceDeclaration_ITestObjectProvider(
22
+ // @ts-expect-error compatibility expected to be broken
23
+ get_old_InterfaceDeclaration_ITestObjectProvider());
24
+ use_old_InterfaceDeclaration_ITestObjectProvider(get_current_InterfaceDeclaration_ITestObjectProvider());
25
+ use_current_ClassDeclaration_LoaderContainerTracker(get_old_ClassDeclaration_LoaderContainerTracker());
26
+ use_old_ClassDeclaration_LoaderContainerTracker(get_current_ClassDeclaration_LoaderContainerTracker());
27
+ use_current_ClassDeclaration_LocalCodeLoader(get_old_ClassDeclaration_LocalCodeLoader());
28
+ use_old_ClassDeclaration_LocalCodeLoader(get_current_ClassDeclaration_LocalCodeLoader());
29
+ use_current_TypeAliasDeclaration_SupportedExportInterfaces(get_old_TypeAliasDeclaration_SupportedExportInterfaces());
30
+ use_old_TypeAliasDeclaration_SupportedExportInterfaces(get_current_TypeAliasDeclaration_SupportedExportInterfaces());
31
+ use_current_VariableDeclaration_TestContainerRuntimeFactory(get_old_VariableDeclaration_TestContainerRuntimeFactory());
32
+ use_old_VariableDeclaration_TestContainerRuntimeFactory(get_current_VariableDeclaration_TestContainerRuntimeFactory());
33
+ use_current_ClassDeclaration_TestFluidObject(get_old_ClassDeclaration_TestFluidObject());
34
+ use_old_ClassDeclaration_TestFluidObject(get_current_ClassDeclaration_TestFluidObject());
35
+ use_current_ClassDeclaration_TestFluidObjectFactory(get_old_ClassDeclaration_TestFluidObjectFactory());
36
+ use_old_ClassDeclaration_TestFluidObjectFactory(get_current_ClassDeclaration_TestFluidObjectFactory());
37
+ use_current_ClassDeclaration_TestObjectProvider(
38
+ // @ts-expect-error compatibility expected to be broken
39
+ get_old_ClassDeclaration_TestObjectProvider());
40
+ use_old_ClassDeclaration_TestObjectProvider(get_current_ClassDeclaration_TestObjectProvider());
41
+ use_current_ClassDeclaration_TestObjectProviderWithVersionedLoad(
42
+ // @ts-expect-error compatibility expected to be broken
43
+ get_old_ClassDeclaration_TestObjectProviderWithVersionedLoad());
44
+ use_old_ClassDeclaration_TestObjectProviderWithVersionedLoad(get_current_ClassDeclaration_TestObjectProviderWithVersionedLoad());
45
+ use_current_InterfaceDeclaration_TimeoutWithError(get_old_InterfaceDeclaration_TimeoutWithError());
46
+ use_old_InterfaceDeclaration_TimeoutWithError(get_current_InterfaceDeclaration_TimeoutWithError());
47
+ use_current_InterfaceDeclaration_TimeoutWithValue(get_old_InterfaceDeclaration_TimeoutWithValue());
48
+ use_old_InterfaceDeclaration_TimeoutWithValue(get_current_InterfaceDeclaration_TimeoutWithValue());
49
+ use_current_FunctionDeclaration_createAndAttachContainer(get_old_FunctionDeclaration_createAndAttachContainer());
50
+ use_old_FunctionDeclaration_createAndAttachContainer(get_current_FunctionDeclaration_createAndAttachContainer());
51
+ use_current_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore(get_old_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore());
52
+ use_old_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore(get_current_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore());
53
+ use_current_VariableDeclaration_createDocumentId(get_old_VariableDeclaration_createDocumentId());
54
+ use_old_VariableDeclaration_createDocumentId(get_current_VariableDeclaration_createDocumentId());
55
+ use_current_FunctionDeclaration_createLoader(get_old_FunctionDeclaration_createLoader());
56
+ use_old_FunctionDeclaration_createLoader(get_current_FunctionDeclaration_createLoader());
57
+ use_current_FunctionDeclaration_createSummarizer(get_old_FunctionDeclaration_createSummarizer());
58
+ use_old_FunctionDeclaration_createSummarizer(get_current_FunctionDeclaration_createSummarizer());
59
+ use_current_FunctionDeclaration_createSummarizerFromFactory(get_old_FunctionDeclaration_createSummarizerFromFactory());
60
+ use_old_FunctionDeclaration_createSummarizerFromFactory(get_current_FunctionDeclaration_createSummarizerFromFactory());
61
+ use_current_VariableDeclaration_createTestContainerRuntimeFactory(get_old_VariableDeclaration_createTestContainerRuntimeFactory());
62
+ use_old_VariableDeclaration_createTestContainerRuntimeFactory(get_current_VariableDeclaration_createTestContainerRuntimeFactory());
63
+ use_current_VariableDeclaration_defaultTimeoutDurationMs(get_old_VariableDeclaration_defaultTimeoutDurationMs());
64
+ use_old_VariableDeclaration_defaultTimeoutDurationMs(get_current_VariableDeclaration_defaultTimeoutDurationMs());
65
+ use_current_TypeAliasDeclaration_fluidEntryPoint(get_old_TypeAliasDeclaration_fluidEntryPoint());
66
+ use_old_TypeAliasDeclaration_fluidEntryPoint(get_current_TypeAliasDeclaration_fluidEntryPoint());
67
+ use_current_FunctionDeclaration_getContainerEntryPointBackCompat(get_old_FunctionDeclaration_getContainerEntryPointBackCompat());
68
+ use_old_FunctionDeclaration_getContainerEntryPointBackCompat(get_current_FunctionDeclaration_getContainerEntryPointBackCompat());
69
+ use_current_FunctionDeclaration_getDataStoreEntryPointBackCompat(get_old_FunctionDeclaration_getDataStoreEntryPointBackCompat());
70
+ use_old_FunctionDeclaration_getDataStoreEntryPointBackCompat(get_current_FunctionDeclaration_getDataStoreEntryPointBackCompat());
71
+ use_current_FunctionDeclaration_getUnexpectedLogErrorException(get_old_FunctionDeclaration_getUnexpectedLogErrorException());
72
+ use_old_FunctionDeclaration_getUnexpectedLogErrorException(get_current_FunctionDeclaration_getUnexpectedLogErrorException());
73
+ use_current_VariableDeclaration_retryWithEventualValue(get_old_VariableDeclaration_retryWithEventualValue());
74
+ use_old_VariableDeclaration_retryWithEventualValue(get_current_VariableDeclaration_retryWithEventualValue());
75
+ use_current_FunctionDeclaration_summarizeNow(get_old_FunctionDeclaration_summarizeNow());
76
+ use_old_FunctionDeclaration_summarizeNow(get_current_FunctionDeclaration_summarizeNow());
77
+ use_current_FunctionDeclaration_timeoutAwait(get_old_FunctionDeclaration_timeoutAwait());
78
+ use_old_FunctionDeclaration_timeoutAwait(get_current_FunctionDeclaration_timeoutAwait());
79
+ use_current_FunctionDeclaration_timeoutPromise(get_old_FunctionDeclaration_timeoutPromise());
80
+ use_old_FunctionDeclaration_timeoutPromise(get_current_FunctionDeclaration_timeoutPromise());
81
+ use_current_FunctionDeclaration_waitForContainerConnection(get_old_FunctionDeclaration_waitForContainerConnection());
82
+ use_old_FunctionDeclaration_waitForContainerConnection(get_current_FunctionDeclaration_waitForContainerConnection());
83
+ use_current_FunctionDeclaration_wrapDocumentService(get_old_FunctionDeclaration_wrapDocumentService());
84
+ use_old_FunctionDeclaration_wrapDocumentService(get_current_FunctionDeclaration_wrapDocumentService());
85
+ use_current_FunctionDeclaration_wrapDocumentServiceFactory(get_old_FunctionDeclaration_wrapDocumentServiceFactory());
86
+ use_old_FunctionDeclaration_wrapDocumentServiceFactory(get_current_FunctionDeclaration_wrapDocumentServiceFactory());
87
+ use_current_FunctionDeclaration_wrapDocumentStorageService(get_old_FunctionDeclaration_wrapDocumentStorageService());
88
+ use_old_FunctionDeclaration_wrapDocumentStorageService(get_current_FunctionDeclaration_wrapDocumentStorageService());
89
+ export {};
90
+ //# sourceMappingURL=validateTestUtilsPrevious.generated.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"validateTestUtilsPrevious.generated.js","sourceRoot":"","sources":["../../../src/test/types/validateTestUtilsPrevious.generated.ts"],"names":[],"mappings":"AAgCA,uDAAuD,CACnD,mDAAmD,EAAE,CAAC,CAAC;AAW3D,mDAAmD,CAC/C,uDAAuD,EAAE,CAAC,CAAC;AAW/D,iDAAiD,CAC7C,6CAA6C,EAAE,CAAC,CAAC;AAWrD,6CAA6C,CACzC,iDAAiD,EAAE,CAAC,CAAC;AAWzD,wDAAwD,CACpD,oDAAoD,EAAE,CAAC,CAAC;AAW5D,oDAAoD,CAChD,wDAAwD,EAAE,CAAC,CAAC;AAWhE,oDAAoD,CAChD,gDAAgD,EAAE,CAAC,CAAC;AAWxD,gDAAgD,CAC5C,oDAAoD,EAAE,CAAC,CAAC;AAW5D,wDAAwD,CACpD,oDAAoD,EAAE,CAAC,CAAC;AAW5D,oDAAoD,CAChD,wDAAwD,EAAE,CAAC,CAAC;AAWhE,wDAAwD,CACpD,oDAAoD,EAAE,CAAC,CAAC;AAW5D,oDAAoD,CAChD,wDAAwD,EAAE,CAAC,CAAC;AAWhE,qDAAqD;AACjD,uDAAuD;AACvD,iDAAiD,EAAE,CAAC,CAAC;AAWzD,iDAAiD;AAC7C,uDAAuD;AACvD,qDAAqD,EAAE,CAAC,CAAC;AAW7D,iDAAiD,CAC7C,6CAA6C,EAAE,CAAC,CAAC;AAWrD,6CAA6C,CACzC,iDAAiD,EAAE,CAAC,CAAC;AAWzD,oDAAoD;AAChD,uDAAuD;AACvD,gDAAgD,EAAE,CAAC,CAAC;AAWxD,gDAAgD,CAC5C,oDAAoD,EAAE,CAAC,CAAC;AAW5D,mDAAmD,CAC/C,+CAA+C,EAAE,CAAC,CAAC;AAWvD,+CAA+C,CAC3C,mDAAmD,EAAE,CAAC,CAAC;AAW3D,4CAA4C,CACxC,wCAAwC,EAAE,CAAC,CAAC;AAWhD,wCAAwC,CACpC,4CAA4C,EAAE,CAAC,CAAC;AAWpD,0DAA0D,CACtD,sDAAsD,EAAE,CAAC,CAAC;AAW9D,sDAAsD,CAClD,0DAA0D,EAAE,CAAC,CAAC;AAWlE,2DAA2D,CACvD,uDAAuD,EAAE,CAAC,CAAC;AAW/D,uDAAuD,CACnD,2DAA2D,EAAE,CAAC,CAAC;AAWnE,4CAA4C,CACxC,wCAAwC,EAAE,CAAC,CAAC;AAWhD,wCAAwC,CACpC,4CAA4C,EAAE,CAAC,CAAC;AAWpD,mDAAmD,CAC/C,+CAA+C,EAAE,CAAC,CAAC;AAWvD,+CAA+C,CAC3C,mDAAmD,EAAE,CAAC,CAAC;AAW3D,+CAA+C;AAC3C,uDAAuD;AACvD,2CAA2C,EAAE,CAAC,CAAC;AAWnD,2CAA2C,CACvC,+CAA+C,EAAE,CAAC,CAAC;AAWvD,gEAAgE;AAC5D,uDAAuD;AACvD,4DAA4D,EAAE,CAAC,CAAC;AAWpE,4DAA4D,CACxD,gEAAgE,EAAE,CAAC,CAAC;AAWxE,iDAAiD,CAC7C,6CAA6C,EAAE,CAAC,CAAC;AAWrD,6CAA6C,CACzC,iDAAiD,EAAE,CAAC,CAAC;AAWzD,iDAAiD,CAC7C,6CAA6C,EAAE,CAAC,CAAC;AAWrD,6CAA6C,CACzC,iDAAiD,EAAE,CAAC,CAAC;AAWzD,wDAAwD,CACpD,oDAAoD,EAAE,CAAC,CAAC;AAW5D,oDAAoD,CAChD,wDAAwD,EAAE,CAAC,CAAC;AAWhE,iFAAiF,CAC7E,6EAA6E,EAAE,CAAC,CAAC;AAWrF,6EAA6E,CACzE,iFAAiF,EAAE,CAAC,CAAC;AAWzF,gDAAgD,CAC5C,4CAA4C,EAAE,CAAC,CAAC;AAWpD,4CAA4C,CACxC,gDAAgD,EAAE,CAAC,CAAC;AAWxD,4CAA4C,CACxC,wCAAwC,EAAE,CAAC,CAAC;AAWhD,wCAAwC,CACpC,4CAA4C,EAAE,CAAC,CAAC;AAWpD,gDAAgD,CAC5C,4CAA4C,EAAE,CAAC,CAAC;AAWpD,4CAA4C,CACxC,gDAAgD,EAAE,CAAC,CAAC;AAWxD,2DAA2D,CACvD,uDAAuD,EAAE,CAAC,CAAC;AAW/D,uDAAuD,CACnD,2DAA2D,EAAE,CAAC,CAAC;AAWnE,iEAAiE,CAC7D,6DAA6D,EAAE,CAAC,CAAC;AAWrE,6DAA6D,CACzD,iEAAiE,EAAE,CAAC,CAAC;AAWzE,wDAAwD,CACpD,oDAAoD,EAAE,CAAC,CAAC;AAW5D,oDAAoD,CAChD,wDAAwD,EAAE,CAAC,CAAC;AAWhE,gDAAgD,CAC5C,4CAA4C,EAAE,CAAC,CAAC;AAWpD,4CAA4C,CACxC,gDAAgD,EAAE,CAAC,CAAC;AAWxD,gEAAgE,CAC5D,4DAA4D,EAAE,CAAC,CAAC;AAWpE,4DAA4D,CACxD,gEAAgE,EAAE,CAAC,CAAC;AAWxE,gEAAgE,CAC5D,4DAA4D,EAAE,CAAC,CAAC;AAWpE,4DAA4D,CACxD,gEAAgE,EAAE,CAAC,CAAC;AAWxE,8DAA8D,CAC1D,0DAA0D,EAAE,CAAC,CAAC;AAWlE,0DAA0D,CACtD,8DAA8D,EAAE,CAAC,CAAC;AAuBtE,sDAAsD,CAClD,kDAAkD,EAAE,CAAC,CAAC;AAW1D,kDAAkD,CAC9C,sDAAsD,EAAE,CAAC,CAAC;AAW9D,4CAA4C,CACxC,wCAAwC,EAAE,CAAC,CAAC;AAWhD,wCAAwC,CACpC,4CAA4C,EAAE,CAAC,CAAC;AAWpD,4CAA4C,CACxC,wCAAwC,EAAE,CAAC,CAAC;AAWhD,wCAAwC,CACpC,4CAA4C,EAAE,CAAC,CAAC;AAWpD,8CAA8C,CAC1C,0CAA0C,EAAE,CAAC,CAAC;AAWlD,0CAA0C,CACtC,8CAA8C,EAAE,CAAC,CAAC;AAWtD,0DAA0D,CACtD,sDAAsD,EAAE,CAAC,CAAC;AAW9D,sDAAsD,CAClD,0DAA0D,EAAE,CAAC,CAAC;AAWlE,mDAAmD,CAC/C,+CAA+C,EAAE,CAAC,CAAC;AAWvD,+CAA+C,CAC3C,mDAAmD,EAAE,CAAC,CAAC;AAW3D,0DAA0D,CACtD,sDAAsD,EAAE,CAAC,CAAC;AAW9D,sDAAsD,CAClD,0DAA0D,EAAE,CAAC,CAAC;AAWlE,0DAA0D,CACtD,sDAAsD,EAAE,CAAC,CAAC;AAW9D,sDAAsD,CAClD,0DAA0D,EAAE,CAAC,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n/*\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.\n * Generated by fluid-type-test-generator in @fluidframework/build-tools.\n */\nimport type * as old from \"@fluidframework/test-utils-previous\";\nimport type * as current from \"../../index.js\";\n\n\n// See 'build-tools/src/type-test-generator/compatibility.ts' for more information.\ntype TypeOnly<T> = T extends number\n\t? number\n\t: T extends string\n\t? string\n\t: T extends boolean | bigint | symbol\n\t? T\n\t: {\n\t\t\t[P in keyof T]: TypeOnly<T[P]>;\n\t };\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"TypeAliasDeclaration_ChannelFactoryRegistry\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_ChannelFactoryRegistry():\n TypeOnly<old.ChannelFactoryRegistry>;\ndeclare function use_current_TypeAliasDeclaration_ChannelFactoryRegistry(\n use: TypeOnly<current.ChannelFactoryRegistry>): void;\nuse_current_TypeAliasDeclaration_ChannelFactoryRegistry(\n get_old_TypeAliasDeclaration_ChannelFactoryRegistry());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"TypeAliasDeclaration_ChannelFactoryRegistry\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_ChannelFactoryRegistry():\n TypeOnly<current.ChannelFactoryRegistry>;\ndeclare function use_old_TypeAliasDeclaration_ChannelFactoryRegistry(\n use: TypeOnly<old.ChannelFactoryRegistry>): void;\nuse_old_TypeAliasDeclaration_ChannelFactoryRegistry(\n get_current_TypeAliasDeclaration_ChannelFactoryRegistry());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"EnumDeclaration_DataObjectFactoryType\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_EnumDeclaration_DataObjectFactoryType():\n TypeOnly<old.DataObjectFactoryType>;\ndeclare function use_current_EnumDeclaration_DataObjectFactoryType(\n use: TypeOnly<current.DataObjectFactoryType>): void;\nuse_current_EnumDeclaration_DataObjectFactoryType(\n get_old_EnumDeclaration_DataObjectFactoryType());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"EnumDeclaration_DataObjectFactoryType\": {\"backCompat\": false}\n*/\ndeclare function get_current_EnumDeclaration_DataObjectFactoryType():\n TypeOnly<current.DataObjectFactoryType>;\ndeclare function use_old_EnumDeclaration_DataObjectFactoryType(\n use: TypeOnly<old.DataObjectFactoryType>): void;\nuse_old_EnumDeclaration_DataObjectFactoryType(\n get_current_EnumDeclaration_DataObjectFactoryType());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_EventAndErrorTrackingLogger\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_EventAndErrorTrackingLogger():\n TypeOnly<old.EventAndErrorTrackingLogger>;\ndeclare function use_current_ClassDeclaration_EventAndErrorTrackingLogger(\n use: TypeOnly<current.EventAndErrorTrackingLogger>): void;\nuse_current_ClassDeclaration_EventAndErrorTrackingLogger(\n get_old_ClassDeclaration_EventAndErrorTrackingLogger());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_EventAndErrorTrackingLogger\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_EventAndErrorTrackingLogger():\n TypeOnly<current.EventAndErrorTrackingLogger>;\ndeclare function use_old_ClassDeclaration_EventAndErrorTrackingLogger(\n use: TypeOnly<old.EventAndErrorTrackingLogger>): void;\nuse_old_ClassDeclaration_EventAndErrorTrackingLogger(\n get_current_ClassDeclaration_EventAndErrorTrackingLogger());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_IDocumentIdStrategy\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IDocumentIdStrategy():\n TypeOnly<old.IDocumentIdStrategy>;\ndeclare function use_current_InterfaceDeclaration_IDocumentIdStrategy(\n use: TypeOnly<current.IDocumentIdStrategy>): void;\nuse_current_InterfaceDeclaration_IDocumentIdStrategy(\n get_old_InterfaceDeclaration_IDocumentIdStrategy());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_IDocumentIdStrategy\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IDocumentIdStrategy():\n TypeOnly<current.IDocumentIdStrategy>;\ndeclare function use_old_InterfaceDeclaration_IDocumentIdStrategy(\n use: TypeOnly<old.IDocumentIdStrategy>): void;\nuse_old_InterfaceDeclaration_IDocumentIdStrategy(\n get_current_InterfaceDeclaration_IDocumentIdStrategy());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_IOpProcessingController\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IOpProcessingController():\n TypeOnly<old.IOpProcessingController>;\ndeclare function use_current_InterfaceDeclaration_IOpProcessingController(\n use: TypeOnly<current.IOpProcessingController>): void;\nuse_current_InterfaceDeclaration_IOpProcessingController(\n get_old_InterfaceDeclaration_IOpProcessingController());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_IOpProcessingController\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IOpProcessingController():\n TypeOnly<current.IOpProcessingController>;\ndeclare function use_old_InterfaceDeclaration_IOpProcessingController(\n use: TypeOnly<old.IOpProcessingController>): void;\nuse_old_InterfaceDeclaration_IOpProcessingController(\n get_current_InterfaceDeclaration_IOpProcessingController());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_IProvideTestFluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_IProvideTestFluidObject():\n TypeOnly<old.IProvideTestFluidObject>;\ndeclare function use_current_InterfaceDeclaration_IProvideTestFluidObject(\n use: TypeOnly<current.IProvideTestFluidObject>): void;\nuse_current_InterfaceDeclaration_IProvideTestFluidObject(\n get_old_InterfaceDeclaration_IProvideTestFluidObject());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_IProvideTestFluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_IProvideTestFluidObject():\n TypeOnly<current.IProvideTestFluidObject>;\ndeclare function use_old_InterfaceDeclaration_IProvideTestFluidObject(\n use: TypeOnly<old.IProvideTestFluidObject>): void;\nuse_old_InterfaceDeclaration_IProvideTestFluidObject(\n get_current_InterfaceDeclaration_IProvideTestFluidObject());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_ITestContainerConfig\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_ITestContainerConfig():\n TypeOnly<old.ITestContainerConfig>;\ndeclare function use_current_InterfaceDeclaration_ITestContainerConfig(\n use: TypeOnly<current.ITestContainerConfig>): void;\nuse_current_InterfaceDeclaration_ITestContainerConfig(\n // @ts-expect-error compatibility expected to be broken\n get_old_InterfaceDeclaration_ITestContainerConfig());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_ITestContainerConfig\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_ITestContainerConfig():\n TypeOnly<current.ITestContainerConfig>;\ndeclare function use_old_InterfaceDeclaration_ITestContainerConfig(\n use: TypeOnly<old.ITestContainerConfig>): void;\nuse_old_InterfaceDeclaration_ITestContainerConfig(\n // @ts-expect-error compatibility expected to be broken\n get_current_InterfaceDeclaration_ITestContainerConfig());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_ITestFluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_ITestFluidObject():\n TypeOnly<old.ITestFluidObject>;\ndeclare function use_current_InterfaceDeclaration_ITestFluidObject(\n use: TypeOnly<current.ITestFluidObject>): void;\nuse_current_InterfaceDeclaration_ITestFluidObject(\n get_old_InterfaceDeclaration_ITestFluidObject());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_ITestFluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_ITestFluidObject():\n TypeOnly<current.ITestFluidObject>;\ndeclare function use_old_InterfaceDeclaration_ITestFluidObject(\n use: TypeOnly<old.ITestFluidObject>): void;\nuse_old_InterfaceDeclaration_ITestFluidObject(\n get_current_InterfaceDeclaration_ITestFluidObject());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_ITestObjectProvider\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_ITestObjectProvider():\n TypeOnly<old.ITestObjectProvider>;\ndeclare function use_current_InterfaceDeclaration_ITestObjectProvider(\n use: TypeOnly<current.ITestObjectProvider>): void;\nuse_current_InterfaceDeclaration_ITestObjectProvider(\n // @ts-expect-error compatibility expected to be broken\n get_old_InterfaceDeclaration_ITestObjectProvider());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_ITestObjectProvider\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_ITestObjectProvider():\n TypeOnly<current.ITestObjectProvider>;\ndeclare function use_old_InterfaceDeclaration_ITestObjectProvider(\n use: TypeOnly<old.ITestObjectProvider>): void;\nuse_old_InterfaceDeclaration_ITestObjectProvider(\n get_current_InterfaceDeclaration_ITestObjectProvider());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_LoaderContainerTracker\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_LoaderContainerTracker():\n TypeOnly<old.LoaderContainerTracker>;\ndeclare function use_current_ClassDeclaration_LoaderContainerTracker(\n use: TypeOnly<current.LoaderContainerTracker>): void;\nuse_current_ClassDeclaration_LoaderContainerTracker(\n get_old_ClassDeclaration_LoaderContainerTracker());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_LoaderContainerTracker\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_LoaderContainerTracker():\n TypeOnly<current.LoaderContainerTracker>;\ndeclare function use_old_ClassDeclaration_LoaderContainerTracker(\n use: TypeOnly<old.LoaderContainerTracker>): void;\nuse_old_ClassDeclaration_LoaderContainerTracker(\n get_current_ClassDeclaration_LoaderContainerTracker());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_LocalCodeLoader\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_LocalCodeLoader():\n TypeOnly<old.LocalCodeLoader>;\ndeclare function use_current_ClassDeclaration_LocalCodeLoader(\n use: TypeOnly<current.LocalCodeLoader>): void;\nuse_current_ClassDeclaration_LocalCodeLoader(\n get_old_ClassDeclaration_LocalCodeLoader());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_LocalCodeLoader\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_LocalCodeLoader():\n TypeOnly<current.LocalCodeLoader>;\ndeclare function use_old_ClassDeclaration_LocalCodeLoader(\n use: TypeOnly<old.LocalCodeLoader>): void;\nuse_old_ClassDeclaration_LocalCodeLoader(\n get_current_ClassDeclaration_LocalCodeLoader());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"TypeAliasDeclaration_SupportedExportInterfaces\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_SupportedExportInterfaces():\n TypeOnly<old.SupportedExportInterfaces>;\ndeclare function use_current_TypeAliasDeclaration_SupportedExportInterfaces(\n use: TypeOnly<current.SupportedExportInterfaces>): void;\nuse_current_TypeAliasDeclaration_SupportedExportInterfaces(\n get_old_TypeAliasDeclaration_SupportedExportInterfaces());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"TypeAliasDeclaration_SupportedExportInterfaces\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_SupportedExportInterfaces():\n TypeOnly<current.SupportedExportInterfaces>;\ndeclare function use_old_TypeAliasDeclaration_SupportedExportInterfaces(\n use: TypeOnly<old.SupportedExportInterfaces>): void;\nuse_old_TypeAliasDeclaration_SupportedExportInterfaces(\n get_current_TypeAliasDeclaration_SupportedExportInterfaces());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_TestContainerRuntimeFactory\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_TestContainerRuntimeFactory():\n TypeOnly<typeof old.TestContainerRuntimeFactory>;\ndeclare function use_current_VariableDeclaration_TestContainerRuntimeFactory(\n use: TypeOnly<typeof current.TestContainerRuntimeFactory>): void;\nuse_current_VariableDeclaration_TestContainerRuntimeFactory(\n get_old_VariableDeclaration_TestContainerRuntimeFactory());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_TestContainerRuntimeFactory\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_TestContainerRuntimeFactory():\n TypeOnly<typeof current.TestContainerRuntimeFactory>;\ndeclare function use_old_VariableDeclaration_TestContainerRuntimeFactory(\n use: TypeOnly<typeof old.TestContainerRuntimeFactory>): void;\nuse_old_VariableDeclaration_TestContainerRuntimeFactory(\n get_current_VariableDeclaration_TestContainerRuntimeFactory());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_TestFluidObject\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_TestFluidObject():\n TypeOnly<old.TestFluidObject>;\ndeclare function use_current_ClassDeclaration_TestFluidObject(\n use: TypeOnly<current.TestFluidObject>): void;\nuse_current_ClassDeclaration_TestFluidObject(\n get_old_ClassDeclaration_TestFluidObject());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_TestFluidObject\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_TestFluidObject():\n TypeOnly<current.TestFluidObject>;\ndeclare function use_old_ClassDeclaration_TestFluidObject(\n use: TypeOnly<old.TestFluidObject>): void;\nuse_old_ClassDeclaration_TestFluidObject(\n get_current_ClassDeclaration_TestFluidObject());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_TestFluidObjectFactory\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_TestFluidObjectFactory():\n TypeOnly<old.TestFluidObjectFactory>;\ndeclare function use_current_ClassDeclaration_TestFluidObjectFactory(\n use: TypeOnly<current.TestFluidObjectFactory>): void;\nuse_current_ClassDeclaration_TestFluidObjectFactory(\n get_old_ClassDeclaration_TestFluidObjectFactory());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_TestFluidObjectFactory\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_TestFluidObjectFactory():\n TypeOnly<current.TestFluidObjectFactory>;\ndeclare function use_old_ClassDeclaration_TestFluidObjectFactory(\n use: TypeOnly<old.TestFluidObjectFactory>): void;\nuse_old_ClassDeclaration_TestFluidObjectFactory(\n get_current_ClassDeclaration_TestFluidObjectFactory());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_TestObjectProvider\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_TestObjectProvider():\n TypeOnly<old.TestObjectProvider>;\ndeclare function use_current_ClassDeclaration_TestObjectProvider(\n use: TypeOnly<current.TestObjectProvider>): void;\nuse_current_ClassDeclaration_TestObjectProvider(\n // @ts-expect-error compatibility expected to be broken\n get_old_ClassDeclaration_TestObjectProvider());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_TestObjectProvider\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_TestObjectProvider():\n TypeOnly<current.TestObjectProvider>;\ndeclare function use_old_ClassDeclaration_TestObjectProvider(\n use: TypeOnly<old.TestObjectProvider>): void;\nuse_old_ClassDeclaration_TestObjectProvider(\n get_current_ClassDeclaration_TestObjectProvider());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_TestObjectProviderWithVersionedLoad\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_ClassDeclaration_TestObjectProviderWithVersionedLoad():\n TypeOnly<old.TestObjectProviderWithVersionedLoad>;\ndeclare function use_current_ClassDeclaration_TestObjectProviderWithVersionedLoad(\n use: TypeOnly<current.TestObjectProviderWithVersionedLoad>): void;\nuse_current_ClassDeclaration_TestObjectProviderWithVersionedLoad(\n // @ts-expect-error compatibility expected to be broken\n get_old_ClassDeclaration_TestObjectProviderWithVersionedLoad());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"ClassDeclaration_TestObjectProviderWithVersionedLoad\": {\"backCompat\": false}\n*/\ndeclare function get_current_ClassDeclaration_TestObjectProviderWithVersionedLoad():\n TypeOnly<current.TestObjectProviderWithVersionedLoad>;\ndeclare function use_old_ClassDeclaration_TestObjectProviderWithVersionedLoad(\n use: TypeOnly<old.TestObjectProviderWithVersionedLoad>): void;\nuse_old_ClassDeclaration_TestObjectProviderWithVersionedLoad(\n get_current_ClassDeclaration_TestObjectProviderWithVersionedLoad());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_TimeoutWithError\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_TimeoutWithError():\n TypeOnly<old.TimeoutWithError>;\ndeclare function use_current_InterfaceDeclaration_TimeoutWithError(\n use: TypeOnly<current.TimeoutWithError>): void;\nuse_current_InterfaceDeclaration_TimeoutWithError(\n get_old_InterfaceDeclaration_TimeoutWithError());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_TimeoutWithError\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_TimeoutWithError():\n TypeOnly<current.TimeoutWithError>;\ndeclare function use_old_InterfaceDeclaration_TimeoutWithError(\n use: TypeOnly<old.TimeoutWithError>): void;\nuse_old_InterfaceDeclaration_TimeoutWithError(\n get_current_InterfaceDeclaration_TimeoutWithError());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_TimeoutWithValue\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_InterfaceDeclaration_TimeoutWithValue():\n TypeOnly<old.TimeoutWithValue>;\ndeclare function use_current_InterfaceDeclaration_TimeoutWithValue(\n use: TypeOnly<current.TimeoutWithValue>): void;\nuse_current_InterfaceDeclaration_TimeoutWithValue(\n get_old_InterfaceDeclaration_TimeoutWithValue());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"InterfaceDeclaration_TimeoutWithValue\": {\"backCompat\": false}\n*/\ndeclare function get_current_InterfaceDeclaration_TimeoutWithValue():\n TypeOnly<current.TimeoutWithValue>;\ndeclare function use_old_InterfaceDeclaration_TimeoutWithValue(\n use: TypeOnly<old.TimeoutWithValue>): void;\nuse_old_InterfaceDeclaration_TimeoutWithValue(\n get_current_InterfaceDeclaration_TimeoutWithValue());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_createAndAttachContainer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_createAndAttachContainer():\n TypeOnly<typeof old.createAndAttachContainer>;\ndeclare function use_current_FunctionDeclaration_createAndAttachContainer(\n use: TypeOnly<typeof current.createAndAttachContainer>): void;\nuse_current_FunctionDeclaration_createAndAttachContainer(\n get_old_FunctionDeclaration_createAndAttachContainer());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_createAndAttachContainer\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_createAndAttachContainer():\n TypeOnly<typeof current.createAndAttachContainer>;\ndeclare function use_old_FunctionDeclaration_createAndAttachContainer(\n use: TypeOnly<typeof old.createAndAttachContainer>): void;\nuse_old_FunctionDeclaration_createAndAttachContainer(\n get_current_FunctionDeclaration_createAndAttachContainer());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore():\n TypeOnly<typeof old.createContainerRuntimeFactoryWithDefaultDataStore>;\ndeclare function use_current_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore(\n use: TypeOnly<typeof current.createContainerRuntimeFactoryWithDefaultDataStore>): void;\nuse_current_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore(\n get_old_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore():\n TypeOnly<typeof current.createContainerRuntimeFactoryWithDefaultDataStore>;\ndeclare function use_old_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore(\n use: TypeOnly<typeof old.createContainerRuntimeFactoryWithDefaultDataStore>): void;\nuse_old_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore(\n get_current_VariableDeclaration_createContainerRuntimeFactoryWithDefaultDataStore());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_createDocumentId\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_createDocumentId():\n TypeOnly<typeof old.createDocumentId>;\ndeclare function use_current_VariableDeclaration_createDocumentId(\n use: TypeOnly<typeof current.createDocumentId>): void;\nuse_current_VariableDeclaration_createDocumentId(\n get_old_VariableDeclaration_createDocumentId());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_createDocumentId\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_createDocumentId():\n TypeOnly<typeof current.createDocumentId>;\ndeclare function use_old_VariableDeclaration_createDocumentId(\n use: TypeOnly<typeof old.createDocumentId>): void;\nuse_old_VariableDeclaration_createDocumentId(\n get_current_VariableDeclaration_createDocumentId());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_createLoader\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_createLoader():\n TypeOnly<typeof old.createLoader>;\ndeclare function use_current_FunctionDeclaration_createLoader(\n use: TypeOnly<typeof current.createLoader>): void;\nuse_current_FunctionDeclaration_createLoader(\n get_old_FunctionDeclaration_createLoader());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_createLoader\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_createLoader():\n TypeOnly<typeof current.createLoader>;\ndeclare function use_old_FunctionDeclaration_createLoader(\n use: TypeOnly<typeof old.createLoader>): void;\nuse_old_FunctionDeclaration_createLoader(\n get_current_FunctionDeclaration_createLoader());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_createSummarizer\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_createSummarizer():\n TypeOnly<typeof old.createSummarizer>;\ndeclare function use_current_FunctionDeclaration_createSummarizer(\n use: TypeOnly<typeof current.createSummarizer>): void;\nuse_current_FunctionDeclaration_createSummarizer(\n get_old_FunctionDeclaration_createSummarizer());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_createSummarizer\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_createSummarizer():\n TypeOnly<typeof current.createSummarizer>;\ndeclare function use_old_FunctionDeclaration_createSummarizer(\n use: TypeOnly<typeof old.createSummarizer>): void;\nuse_old_FunctionDeclaration_createSummarizer(\n get_current_FunctionDeclaration_createSummarizer());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_createSummarizerFromFactory\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_createSummarizerFromFactory():\n TypeOnly<typeof old.createSummarizerFromFactory>;\ndeclare function use_current_FunctionDeclaration_createSummarizerFromFactory(\n use: TypeOnly<typeof current.createSummarizerFromFactory>): void;\nuse_current_FunctionDeclaration_createSummarizerFromFactory(\n get_old_FunctionDeclaration_createSummarizerFromFactory());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_createSummarizerFromFactory\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_createSummarizerFromFactory():\n TypeOnly<typeof current.createSummarizerFromFactory>;\ndeclare function use_old_FunctionDeclaration_createSummarizerFromFactory(\n use: TypeOnly<typeof old.createSummarizerFromFactory>): void;\nuse_old_FunctionDeclaration_createSummarizerFromFactory(\n get_current_FunctionDeclaration_createSummarizerFromFactory());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_createTestContainerRuntimeFactory\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_createTestContainerRuntimeFactory():\n TypeOnly<typeof old.createTestContainerRuntimeFactory>;\ndeclare function use_current_VariableDeclaration_createTestContainerRuntimeFactory(\n use: TypeOnly<typeof current.createTestContainerRuntimeFactory>): void;\nuse_current_VariableDeclaration_createTestContainerRuntimeFactory(\n get_old_VariableDeclaration_createTestContainerRuntimeFactory());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_createTestContainerRuntimeFactory\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_createTestContainerRuntimeFactory():\n TypeOnly<typeof current.createTestContainerRuntimeFactory>;\ndeclare function use_old_VariableDeclaration_createTestContainerRuntimeFactory(\n use: TypeOnly<typeof old.createTestContainerRuntimeFactory>): void;\nuse_old_VariableDeclaration_createTestContainerRuntimeFactory(\n get_current_VariableDeclaration_createTestContainerRuntimeFactory());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_defaultTimeoutDurationMs\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_defaultTimeoutDurationMs():\n TypeOnly<typeof old.defaultTimeoutDurationMs>;\ndeclare function use_current_VariableDeclaration_defaultTimeoutDurationMs(\n use: TypeOnly<typeof current.defaultTimeoutDurationMs>): void;\nuse_current_VariableDeclaration_defaultTimeoutDurationMs(\n get_old_VariableDeclaration_defaultTimeoutDurationMs());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_defaultTimeoutDurationMs\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_defaultTimeoutDurationMs():\n TypeOnly<typeof current.defaultTimeoutDurationMs>;\ndeclare function use_old_VariableDeclaration_defaultTimeoutDurationMs(\n use: TypeOnly<typeof old.defaultTimeoutDurationMs>): void;\nuse_old_VariableDeclaration_defaultTimeoutDurationMs(\n get_current_VariableDeclaration_defaultTimeoutDurationMs());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"TypeAliasDeclaration_fluidEntryPoint\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_TypeAliasDeclaration_fluidEntryPoint():\n TypeOnly<old.fluidEntryPoint>;\ndeclare function use_current_TypeAliasDeclaration_fluidEntryPoint(\n use: TypeOnly<current.fluidEntryPoint>): void;\nuse_current_TypeAliasDeclaration_fluidEntryPoint(\n get_old_TypeAliasDeclaration_fluidEntryPoint());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"TypeAliasDeclaration_fluidEntryPoint\": {\"backCompat\": false}\n*/\ndeclare function get_current_TypeAliasDeclaration_fluidEntryPoint():\n TypeOnly<current.fluidEntryPoint>;\ndeclare function use_old_TypeAliasDeclaration_fluidEntryPoint(\n use: TypeOnly<old.fluidEntryPoint>): void;\nuse_old_TypeAliasDeclaration_fluidEntryPoint(\n get_current_TypeAliasDeclaration_fluidEntryPoint());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_getContainerEntryPointBackCompat\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_getContainerEntryPointBackCompat():\n TypeOnly<typeof old.getContainerEntryPointBackCompat>;\ndeclare function use_current_FunctionDeclaration_getContainerEntryPointBackCompat(\n use: TypeOnly<typeof current.getContainerEntryPointBackCompat>): void;\nuse_current_FunctionDeclaration_getContainerEntryPointBackCompat(\n get_old_FunctionDeclaration_getContainerEntryPointBackCompat());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_getContainerEntryPointBackCompat\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_getContainerEntryPointBackCompat():\n TypeOnly<typeof current.getContainerEntryPointBackCompat>;\ndeclare function use_old_FunctionDeclaration_getContainerEntryPointBackCompat(\n use: TypeOnly<typeof old.getContainerEntryPointBackCompat>): void;\nuse_old_FunctionDeclaration_getContainerEntryPointBackCompat(\n get_current_FunctionDeclaration_getContainerEntryPointBackCompat());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_getDataStoreEntryPointBackCompat\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_getDataStoreEntryPointBackCompat():\n TypeOnly<typeof old.getDataStoreEntryPointBackCompat>;\ndeclare function use_current_FunctionDeclaration_getDataStoreEntryPointBackCompat(\n use: TypeOnly<typeof current.getDataStoreEntryPointBackCompat>): void;\nuse_current_FunctionDeclaration_getDataStoreEntryPointBackCompat(\n get_old_FunctionDeclaration_getDataStoreEntryPointBackCompat());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_getDataStoreEntryPointBackCompat\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_getDataStoreEntryPointBackCompat():\n TypeOnly<typeof current.getDataStoreEntryPointBackCompat>;\ndeclare function use_old_FunctionDeclaration_getDataStoreEntryPointBackCompat(\n use: TypeOnly<typeof old.getDataStoreEntryPointBackCompat>): void;\nuse_old_FunctionDeclaration_getDataStoreEntryPointBackCompat(\n get_current_FunctionDeclaration_getDataStoreEntryPointBackCompat());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_getUnexpectedLogErrorException\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_getUnexpectedLogErrorException():\n TypeOnly<typeof old.getUnexpectedLogErrorException>;\ndeclare function use_current_FunctionDeclaration_getUnexpectedLogErrorException(\n use: TypeOnly<typeof current.getUnexpectedLogErrorException>): void;\nuse_current_FunctionDeclaration_getUnexpectedLogErrorException(\n get_old_FunctionDeclaration_getUnexpectedLogErrorException());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_getUnexpectedLogErrorException\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_getUnexpectedLogErrorException():\n TypeOnly<typeof current.getUnexpectedLogErrorException>;\ndeclare function use_old_FunctionDeclaration_getUnexpectedLogErrorException(\n use: TypeOnly<typeof old.getUnexpectedLogErrorException>): void;\nuse_old_FunctionDeclaration_getUnexpectedLogErrorException(\n get_current_FunctionDeclaration_getUnexpectedLogErrorException());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"RemovedVariableDeclaration_mockConfigProvider\": {\"forwardCompat\": false}\n*/\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"RemovedVariableDeclaration_mockConfigProvider\": {\"backCompat\": false}\n*/\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_retryWithEventualValue\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_VariableDeclaration_retryWithEventualValue():\n TypeOnly<typeof old.retryWithEventualValue>;\ndeclare function use_current_VariableDeclaration_retryWithEventualValue(\n use: TypeOnly<typeof current.retryWithEventualValue>): void;\nuse_current_VariableDeclaration_retryWithEventualValue(\n get_old_VariableDeclaration_retryWithEventualValue());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"VariableDeclaration_retryWithEventualValue\": {\"backCompat\": false}\n*/\ndeclare function get_current_VariableDeclaration_retryWithEventualValue():\n TypeOnly<typeof current.retryWithEventualValue>;\ndeclare function use_old_VariableDeclaration_retryWithEventualValue(\n use: TypeOnly<typeof old.retryWithEventualValue>): void;\nuse_old_VariableDeclaration_retryWithEventualValue(\n get_current_VariableDeclaration_retryWithEventualValue());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_summarizeNow\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_summarizeNow():\n TypeOnly<typeof old.summarizeNow>;\ndeclare function use_current_FunctionDeclaration_summarizeNow(\n use: TypeOnly<typeof current.summarizeNow>): void;\nuse_current_FunctionDeclaration_summarizeNow(\n get_old_FunctionDeclaration_summarizeNow());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_summarizeNow\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_summarizeNow():\n TypeOnly<typeof current.summarizeNow>;\ndeclare function use_old_FunctionDeclaration_summarizeNow(\n use: TypeOnly<typeof old.summarizeNow>): void;\nuse_old_FunctionDeclaration_summarizeNow(\n get_current_FunctionDeclaration_summarizeNow());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_timeoutAwait\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_timeoutAwait():\n TypeOnly<typeof old.timeoutAwait>;\ndeclare function use_current_FunctionDeclaration_timeoutAwait(\n use: TypeOnly<typeof current.timeoutAwait>): void;\nuse_current_FunctionDeclaration_timeoutAwait(\n get_old_FunctionDeclaration_timeoutAwait());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_timeoutAwait\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_timeoutAwait():\n TypeOnly<typeof current.timeoutAwait>;\ndeclare function use_old_FunctionDeclaration_timeoutAwait(\n use: TypeOnly<typeof old.timeoutAwait>): void;\nuse_old_FunctionDeclaration_timeoutAwait(\n get_current_FunctionDeclaration_timeoutAwait());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_timeoutPromise\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_timeoutPromise():\n TypeOnly<typeof old.timeoutPromise>;\ndeclare function use_current_FunctionDeclaration_timeoutPromise(\n use: TypeOnly<typeof current.timeoutPromise>): void;\nuse_current_FunctionDeclaration_timeoutPromise(\n get_old_FunctionDeclaration_timeoutPromise());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_timeoutPromise\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_timeoutPromise():\n TypeOnly<typeof current.timeoutPromise>;\ndeclare function use_old_FunctionDeclaration_timeoutPromise(\n use: TypeOnly<typeof old.timeoutPromise>): void;\nuse_old_FunctionDeclaration_timeoutPromise(\n get_current_FunctionDeclaration_timeoutPromise());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_waitForContainerConnection\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_waitForContainerConnection():\n TypeOnly<typeof old.waitForContainerConnection>;\ndeclare function use_current_FunctionDeclaration_waitForContainerConnection(\n use: TypeOnly<typeof current.waitForContainerConnection>): void;\nuse_current_FunctionDeclaration_waitForContainerConnection(\n get_old_FunctionDeclaration_waitForContainerConnection());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_waitForContainerConnection\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_waitForContainerConnection():\n TypeOnly<typeof current.waitForContainerConnection>;\ndeclare function use_old_FunctionDeclaration_waitForContainerConnection(\n use: TypeOnly<typeof old.waitForContainerConnection>): void;\nuse_old_FunctionDeclaration_waitForContainerConnection(\n get_current_FunctionDeclaration_waitForContainerConnection());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_wrapDocumentService\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_wrapDocumentService():\n TypeOnly<typeof old.wrapDocumentService>;\ndeclare function use_current_FunctionDeclaration_wrapDocumentService(\n use: TypeOnly<typeof current.wrapDocumentService>): void;\nuse_current_FunctionDeclaration_wrapDocumentService(\n get_old_FunctionDeclaration_wrapDocumentService());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_wrapDocumentService\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_wrapDocumentService():\n TypeOnly<typeof current.wrapDocumentService>;\ndeclare function use_old_FunctionDeclaration_wrapDocumentService(\n use: TypeOnly<typeof old.wrapDocumentService>): void;\nuse_old_FunctionDeclaration_wrapDocumentService(\n get_current_FunctionDeclaration_wrapDocumentService());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_wrapDocumentServiceFactory\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_wrapDocumentServiceFactory():\n TypeOnly<typeof old.wrapDocumentServiceFactory>;\ndeclare function use_current_FunctionDeclaration_wrapDocumentServiceFactory(\n use: TypeOnly<typeof current.wrapDocumentServiceFactory>): void;\nuse_current_FunctionDeclaration_wrapDocumentServiceFactory(\n get_old_FunctionDeclaration_wrapDocumentServiceFactory());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_wrapDocumentServiceFactory\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_wrapDocumentServiceFactory():\n TypeOnly<typeof current.wrapDocumentServiceFactory>;\ndeclare function use_old_FunctionDeclaration_wrapDocumentServiceFactory(\n use: TypeOnly<typeof old.wrapDocumentServiceFactory>): void;\nuse_old_FunctionDeclaration_wrapDocumentServiceFactory(\n get_current_FunctionDeclaration_wrapDocumentServiceFactory());\n\n/*\n* Validate forward compat by using old type in place of current type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_wrapDocumentStorageService\": {\"forwardCompat\": false}\n*/\ndeclare function get_old_FunctionDeclaration_wrapDocumentStorageService():\n TypeOnly<typeof old.wrapDocumentStorageService>;\ndeclare function use_current_FunctionDeclaration_wrapDocumentStorageService(\n use: TypeOnly<typeof current.wrapDocumentStorageService>): void;\nuse_current_FunctionDeclaration_wrapDocumentStorageService(\n get_old_FunctionDeclaration_wrapDocumentStorageService());\n\n/*\n* Validate back compat by using current type in place of old type\n* If breaking change required, add in package.json under typeValidation.broken:\n* \"FunctionDeclaration_wrapDocumentStorageService\": {\"backCompat\": false}\n*/\ndeclare function get_current_FunctionDeclaration_wrapDocumentStorageService():\n TypeOnly<typeof current.wrapDocumentStorageService>;\ndeclare function use_old_FunctionDeclaration_wrapDocumentStorageService(\n use: TypeOnly<typeof old.wrapDocumentStorageService>): void;\nuse_old_FunctionDeclaration_wrapDocumentStorageService(\n get_current_FunctionDeclaration_wrapDocumentStorageService());\n"]}
@@ -0,0 +1,309 @@
1
+ import { ConfigTypes } from '@fluidframework/core-interfaces';
2
+ import { ContainerRuntime } from '@fluidframework/container-runtime';
3
+ import { ContainerRuntimeFactoryWithDefaultDataStore } from '@fluidframework/aqueduct';
4
+ import { FluidDataStoreRuntime } from '@fluidframework/datastore';
5
+ import { FluidObject } from '@fluidframework/core-interfaces';
6
+ import { IChannelFactory } from '@fluidframework/datastore-definitions';
7
+ import { ICodeDetailsLoader } from '@fluidframework/container-definitions';
8
+ import { IConfigProviderBase } from '@fluidframework/core-interfaces';
9
+ import { IContainer } from '@fluidframework/container-definitions';
10
+ import { IContainerContext } from '@fluidframework/container-definitions';
11
+ import { IContainerRuntime } from '@fluidframework/container-runtime-definitions';
12
+ import { IContainerRuntimeOptions } from '@fluidframework/container-runtime';
13
+ import { IDataStore } from '@fluidframework/runtime-definitions';
14
+ import { IDocumentService } from '@fluidframework/driver-definitions';
15
+ import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
16
+ import { IDocumentStorageService } from '@fluidframework/driver-definitions';
17
+ import { IFluidCodeDetails } from '@fluidframework/container-definitions';
18
+ import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions';
19
+ import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
20
+ import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
21
+ import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
22
+ import { IFluidHandle } from '@fluidframework/core-interfaces';
23
+ import { IFluidLoadable } from '@fluidframework/core-interfaces';
24
+ import { IFluidModule } from '@fluidframework/container-definitions';
25
+ import { IFluidModuleWithDetails } from '@fluidframework/container-definitions';
26
+ import { IHostLoader } from '@fluidframework/container-definitions';
27
+ import { ILoaderOptions } from '@fluidframework/container-definitions';
28
+ import { ILoaderProps } from '@fluidframework/container-loader';
29
+ import { IOnDemandSummarizeOptions } from '@fluidframework/container-runtime';
30
+ import { IProvideFluidCodeDetailsComparer } from '@fluidframework/container-definitions';
31
+ import { IProvideFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
32
+ import { IProvideFluidDataStoreRegistry } from '@fluidframework/runtime-definitions';
33
+ import { IProvideRuntimeFactory } from '@fluidframework/container-definitions';
34
+ import { IRequest } from '@fluidframework/core-interfaces';
35
+ import { IRequestHeader } from '@fluidframework/core-interfaces';
36
+ import { IResolvedUrl } from '@fluidframework/driver-definitions';
37
+ import { IResponse } from '@fluidframework/core-interfaces';
38
+ import { IRuntime } from '@fluidframework/container-definitions';
39
+ import { ISharedMap } from '@fluidframework/map';
40
+ import { ISummarizer } from '@fluidframework/container-runtime';
41
+ import { ISummaryContext } from '@fluidframework/driver-definitions';
42
+ import { ISummaryTree } from '@fluidframework/protocol-definitions';
43
+ import { ITelemetryBaseEvent } from '@fluidframework/core-interfaces';
44
+ import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
45
+ import { ITelemetryGenericEventExt } from '@fluidframework/telemetry-utils';
46
+ import { ITestDriver } from '@fluidframework/test-driver-definitions';
47
+ import { IUrlResolver } from '@fluidframework/driver-definitions';
48
+ import { Loader } from '@fluidframework/container-loader';
49
+ import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions';
50
+ import { RuntimeRequestHandler } from '@fluidframework/request-handler';
51
+
52
+ /* Excluded from this release type: ChannelFactoryRegistry */
53
+
54
+ /**
55
+ * Creates a detached Container and attaches it.
56
+ * @param source - The code details used to create the Container.
57
+ * @param loader - The loader to use to initialize the container.
58
+ * @param attachRequest - The request to create new from.
59
+ * @alpha
60
+ */
61
+ export declare function createAndAttachContainer(source: IFluidCodeDetails, loader: IHostLoader, attachRequest: IRequest): Promise<IContainer>;
62
+
63
+ /* Excluded from this release type: createContainerRuntimeFactoryWithDefaultDataStore */
64
+
65
+ /* Excluded from this release type: createDocumentId */
66
+
67
+ /* Excluded from this release type: createLoader */
68
+
69
+ /* Excluded from this release type: createSummarizer */
70
+
71
+ /* Excluded from this release type: createSummarizerCore */
72
+
73
+ /* Excluded from this release type: createSummarizerFromFactory */
74
+
75
+ /* Excluded from this release type: createTestConfigProvider */
76
+
77
+ /* Excluded from this release type: createTestContainerRuntimeFactory */
78
+
79
+ /* Excluded from this release type: DataObjectFactoryType */
80
+
81
+ /* Excluded from this release type: defaultTimeoutDurationMs */
82
+
83
+ /* Excluded from this release type: EventAndErrorTrackingLogger */
84
+
85
+ /* Excluded from this release type: fluidEntryPoint */
86
+
87
+ /* Excluded from this release type: getContainerEntryPointBackCompat */
88
+
89
+ /* Excluded from this release type: getDataStoreEntryPointBackCompat */
90
+
91
+ /* Excluded from this release type: getUnexpectedLogErrorException */
92
+
93
+ /* Excluded from this release type: IDocumentIdStrategy */
94
+
95
+ /**
96
+ * @alpha
97
+ */
98
+ export declare interface IOpProcessingController {
99
+ processIncoming(...containers: IContainer[]): Promise<void>;
100
+ processOutgoing(...containers: IContainer[]): Promise<void>;
101
+ pauseProcessing(...containers: IContainer[]): Promise<void>;
102
+ resumeProcessing(...containers: IContainer[]): void;
103
+ }
104
+
105
+ /**
106
+ * @alpha
107
+ */
108
+ export declare interface IProvideTestFluidObject {
109
+ readonly ITestFluidObject: ITestFluidObject;
110
+ }
111
+
112
+ /* Excluded from this release type: ITestConfigProvider */
113
+
114
+ /* Excluded from this release type: ITestContainerConfig */
115
+
116
+ /* Excluded from this release type: ITestDriver */
117
+
118
+ /**
119
+ * @alpha
120
+ */
121
+ export declare interface ITestFluidObject extends IProvideTestFluidObject, IFluidLoadable {
122
+ root: ISharedMap;
123
+ readonly runtime: IFluidDataStoreRuntime;
124
+ readonly channel: IFluidDataStoreChannel;
125
+ readonly context: IFluidDataStoreContext;
126
+ getSharedObject<T = any>(id: string): Promise<T>;
127
+ }
128
+
129
+ /* Excluded from this release type: ITestObjectProvider */
130
+
131
+ /**
132
+ * @alpha
133
+ */
134
+ export declare class LoaderContainerTracker implements IOpProcessingController {
135
+ private readonly syncSummarizerClients;
136
+ private readonly containers;
137
+ private lastProposalSeqNum;
138
+ constructor(syncSummarizerClients?: boolean);
139
+ /**
140
+ * Add a loader to start to track any container created from them
141
+ * @param loader - loader to start tracking any container created.
142
+ */
143
+ add<LoaderType extends IHostLoader>(loader: LoaderType): void;
144
+ /**
145
+ * Utility function to add container to be tracked.
146
+ *
147
+ * @param container - container to add
148
+ */
149
+ private addContainer;
150
+ /**
151
+ * Keep track of the trailing NoOp that was sent so we can discount them in the clientSequenceNumber tracking.
152
+ * The server might coalesce them with other ops, or a single NoOp, or delay it if it don't think it is necessary.
153
+ *
154
+ * @param container - the container to track
155
+ * @param record - the record to update the trailing op information
156
+ */
157
+ private trackTrailingNoOps;
158
+ private trackLastProposal;
159
+ /**
160
+ * Reset the tracker, closing all containers and stop tracking them.
161
+ */
162
+ reset(): void;
163
+ /**
164
+ * Make sure all the tracked containers are synchronized.
165
+ *
166
+ * No isDirty (non-readonly) containers
167
+ * No extra clientId in quorum of any container that is not tracked and still opened.
168
+ * - i.e. no pending Join/Leave message.
169
+ * No unresolved proposal (minSeqNum \>= lastProposalSeqNum)
170
+ * lastSequenceNumber of all container is the same
171
+ * clientSequenceNumberObserved is the same as clientSequenceNumber sent
172
+ * - this overlaps with !isDirty, but include task scheduler ops.
173
+ * - Trailing NoOp is tracked and don't count as pending ops.
174
+ *
175
+ * Containers that are already pause will resume process and paused again once
176
+ * everything is synchronized. Containers that aren't paused will remain unpaused when this
177
+ * function returns.
178
+ */
179
+ ensureSynchronized(...containers: IContainer[]): Promise<void>;
180
+ /**
181
+ * Utility to calculate the set of clientId per container in quorum that is NOT associated with
182
+ * any container we tracked, indicating there is a pending join or leave op that we need to wait.
183
+ *
184
+ * @param containersToApply - the set of containers to check
185
+ */
186
+ private getPendingClients;
187
+ /**
188
+ * Utility to check synchronization based on sequence number
189
+ * See ensureSynchronized for more detail
190
+ *
191
+ * @param containersToApply - the set of containers to check
192
+ */
193
+ private needSequenceNumberSynchronize;
194
+ private containerIndexStrings;
195
+ /**
196
+ * Utility to wait for any clientId in quorum that is NOT associated with any container we
197
+ * tracked, indicating there is a pending join or leave op that we need to wait.
198
+ *
199
+ * Note that this function doesn't account for container that got added after we started waiting
200
+ *
201
+ * @param containersToApply - the set of containers to wait for any inbound ops for
202
+ */
203
+ private waitForPendingClients;
204
+ /**
205
+ * Utility to wait for any inbound ops from a set of containers
206
+ * @param containersToApply - the set of containers to wait for any inbound ops for
207
+ */
208
+ private waitForAnyInboundOps;
209
+ /**
210
+ * Resume all queue activities on all paused tracked containers and return them
211
+ */
212
+ resumeProcessing(...containers: IContainer[]): IContainer[];
213
+ /**
214
+ * Pause all queue activities on the containers given, or all tracked containers
215
+ * Any containers given that is not tracked will be ignored.
216
+ *
217
+ * When a container is paused, it is assumed that we want fine grain control over op
218
+ * sequencing. This function will prepare the container and force it into write mode to
219
+ * avoid missing join messages or change the sequence of event when switching from read to
220
+ * write mode.
221
+ */
222
+ pauseProcessing(...containers: IContainer[]): Promise<void>;
223
+ /**
224
+ * When a container is paused, it is assumed that we want fine grain control over op
225
+ * sequencing. This function will prepare the container and force it into write mode to
226
+ * avoid missing join messages or change the sequence of event when switching from read to
227
+ * write mode.
228
+ *
229
+ * @param container - the container to pause
230
+ * @param record - the record for the container
231
+ */
232
+ private pauseContainer;
233
+ /**
234
+ * Pause all queue activities on all tracked containers, and resume only
235
+ * inbound to process ops until it is idle. All queues are left in the paused state
236
+ * after the function.
237
+ *
238
+ * Pausing will switch the container to write mode. See `pauseProcessing`
239
+ */
240
+ processIncoming(...containers: IContainer[]): Promise<void>;
241
+ /**
242
+ * Pause all queue activities on all tracked containers, and resume only
243
+ * outbound to process ops until it is idle. All queues are left in the paused state
244
+ * after the function.
245
+ *
246
+ * Pausing will switch the container to write mode. See `pauseProcessing`
247
+ */
248
+ processOutgoing(...containers: IContainer[]): Promise<void>;
249
+ /**
250
+ * Implementation of processIncoming and processOutgoing
251
+ */
252
+ private processQueue;
253
+ /**
254
+ * Utility to set up listener to track the outbound ops until it round trip back
255
+ * Returns a function to remove the handler after it is done.
256
+ *
257
+ * @param container - the container to setup
258
+ * @param inflightTracker - a map to track the clientSequenceNumber per container it expect to get ops back
259
+ */
260
+ private setupInOutTracker;
261
+ /**
262
+ * Setup debug traces for connection and ops
263
+ */
264
+ private setupTrace;
265
+ /**
266
+ * Filter out the opened containers based on param.
267
+ * @param containers - The container to filter to. If the array is empty, it means don't filter and return
268
+ * all open containers.
269
+ */
270
+ private getContainers;
271
+ }
272
+
273
+ /* Excluded from this release type: LocalCodeLoader */
274
+
275
+ /* Excluded from this release type: retryWithEventualValue */
276
+
277
+ /* Excluded from this release type: summarizeNow */
278
+
279
+ /* Excluded from this release type: SummaryInfo */
280
+
281
+ /* Excluded from this release type: SupportedExportInterfaces */
282
+
283
+ /* Excluded from this release type: TestContainerRuntimeFactory */
284
+
285
+ /* Excluded from this release type: TestFluidObject */
286
+
287
+ /* Excluded from this release type: TestFluidObjectFactory */
288
+
289
+ /* Excluded from this release type: TestObjectProvider */
290
+
291
+ /* Excluded from this release type: TestObjectProviderWithVersionedLoad */
292
+
293
+ /* Excluded from this release type: timeoutAwait */
294
+
295
+ /* Excluded from this release type: timeoutPromise */
296
+
297
+ /* Excluded from this release type: TimeoutWithError */
298
+
299
+ /* Excluded from this release type: TimeoutWithValue */
300
+
301
+ /* Excluded from this release type: waitForContainerConnection */
302
+
303
+ /* Excluded from this release type: wrapDocumentService */
304
+
305
+ /* Excluded from this release type: wrapDocumentServiceFactory */
306
+
307
+ /* Excluded from this release type: wrapDocumentStorageService */
308
+
309
+ export { }